J
Jacob
I'm building a web custom control, that should render out a calendar
webcontrol. I'm using the following code...
protected override void Render(HtmlTextWriter output)
{
System.Web.UI.WebControls.Calendar calendar = new Calendar();
calendar.RenderControl(output);
}
The problem is that it only render out the calendar webcontrol without
it's functionality. Fx. there are no links on each day etc.
What do I do wrong?
webcontrol. I'm using the following code...
protected override void Render(HtmlTextWriter output)
{
System.Web.UI.WebControls.Calendar calendar = new Calendar();
calendar.RenderControl(output);
}
The problem is that it only render out the calendar webcontrol without
it's functionality. Fx. there are no links on each day etc.
What do I do wrong?