Hai,
How to get checkbox value without postback inside gridview?i have used update panel.But without autopostback = true in checkbox i cant get the values of checkbox.
Here is my code:
<asp:updatepanel id="Panel1" runat="server" updatemode="conditional">
<asp:button id="button1" runat="server" text="update" click="btnupdate_click"/>
<asp:gridview id="gridview1" runat="server">
<templatefield headertext = "completed">
<itemtemplate>
<asp:checkbox id="chkcompleted" runat="server" checked = '<%# convert.toboolean(Eval("comstatus")) %>' autopostback="true">
</itemtemplate>
<templatefield>
</asp:gridview>
</asp:updatepanel> ...
Go to the complete details ...