i have a page with a checkbox. it has the related .cs code -->
protected void chkShowAll_CheckedChanged(object sender, EventArgs e)
{
ctrlTime.ShowAllProjects = chkShowAll.Checked;
}
on clicking on the checkbox, a table appears. How do i keep that checkbox open by default so that the table appears WITH the page rather than checking on the box to access it?