There is always common problem for CheckBoxList control that it doesn't have set of column width and row height. The problem is that since I can't seem to figure out how to set the width of the individual cells, which means the columns in each list don't match up with the other lists, and the design doesn't look clean. Below image there is two checkbox list control and each contain 3 columns Set the RepeatColumns to 3 To solve we are create style sheets . And w e need to set the same height and width properties in the class and apply that class to both the CheckBoxList control. e.g < style type ="text/css"> .chkBoxList tr { height : 25px ; } .chkBoxList td { width : 150px ; } </ style > < asp : CheckBoxList ID ="CheckBoxList1" runat ="server" RepeatColumns ="3" CssClass ="chkBoxList"> < / asp : Che...
To Share Experiences of upcoming Microsoft Technologies...