Hi,
I have a checkboxlist like this -:
<asp:CheckBoxList ID="chk_UserRole" runat="server" RepeatDirection="Horizontal">
<asp:ListItem>1</asp:ListItem>
<asp:ListItem>2</asp:ListItem>
<asp:ListItem>3</asp:ListItem>
<asp:ListItem>4</asp:ListItem>
Now in the run time i want at least two of them wud be checked or ticked or selected...
I am writing this code
chk_UserRole.SelectedValue ="1";
chk_UserRole.SelectedValue = "2";
But it is showing only checkbox no 2 as checked.....
Cant we get more than one checkbox to be checked????
Thanks

Emma