Hi all,
While binding the datasource the datalist like below.
𐄂A 𐄂B 𐄂C 𐄂D 𐄂E 𐄂F 𐄂G 𐄂H 𐄂I 𐄂J
In my required i have to check minimum one checkbox. whille inserting to database i want to get the checked item name means If i check A,B,C,D then i want to get A,B,C,D with commaseparated, if i check B,C,G then i want to get B,C,G with commaseparated
The above requirement should be solve in javascript code only. Please under stand my query and give reply as soon as possible
Please solve my below query
<asp:DataList ID="DL_Demo_Type" runat="server" RepeatLayout="Table" RepeatDirection="Horizontal" RepeatColumns="10" CellPadding="0" CellSpacing="0" DataSourceID="Usr_DL_Demo_Type">
<ItemTemplate>
<table style="width: 50px; height: 100px;" cellpadding="0" cellspacing="0">
<tr>
<td class="Lbl">
<asp:CheckBox ID="chk_Select" runat="server" />
<%# Eval("Usr_Type") %>
</td>
</tr>
</table>
</ItemTemplate>
</asp:DataList>
Thanks in advance