Click here to Skip to main content
15,897,704 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
hi,

i have repeater which shows data.then i add 1 column for checkbox in repeater.the purpose is i want user click checkbox according to which data they want in order to update the data.so when user click checkbox, form is display and user can update from that form.

currently i only manage to add checkbox.i dont know how to add event to checkbox and then do the following process.

thank in advance
musiw.
Posted
Comments
Christian Amado 14-Aug-12 8:36am    
How about generating your checked event in design time?
musiw 15-Aug-12 1:07am    
how?i dont understand.can you explain further.thanks

<asp:Repeater ID="Repeater1" runat="server" OnDataBinding="Repeater1_OnItemDataBound" >
<HeaderTemplate>

<table width="100%">

<tr bgcolor="#b0c4de">
<th>
<asp:LinkButton ID="Button2" runat="server" Text="Update" />
</th>
<th>Tajuk Projek</th>

<th>Nama</th>

<th>Tujuan</th>

<th>Tarikh Permohonan</th>

</tr>

</HeaderTemplate>

<itemtemplate>

<tr bgcolor="#f0f0f0">
<td>
<asp:CheckBox ID="CheckBox1" runat="server" />
</td>
<td>
<asp:Label ID="Label7" runat="server" Text='<%#Eval("title") %>'></td>

<td>
<asp:Label ID="Label8" runat="server" Text='<%#Eval("nama") %>'></td>

<td>
<asp:Label ID="Label9" runat="server" Text='<%#Eval("tujuan") %>'></td>

<td>
<asp:Label ID="Label10" runat="server" Text='<%#Eval("date_request", "{0:d}") %>'></td>

</tr>



<footertemplate>

</table>



This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900