Wednesday, February 9, 2011

How to uncheck checkboxlist

place this code inside eventHandler that you want to uncheck checkboxlist

foreach (ListItem li in cblMulti.Items)
{
li.Selected = false;
}

No comments:

Post a Comment

Ajax CalendarExtender displaying at wrong position in Chrome

< script type ="text/javascript" language ="javascript">     function onCalendarShown(sender, args)...