R
Rock
The results of checkbox.checked always returns false even when it's true.
What am I missing or doing wrong or what's the secret???
<asp:TemplateColumn HeaderText="Validated">
<ItemTemplate>
<asp:checkbox id=chk1 runat="server" Checked='<%#
DataBinder.Eval(Container.DataItem,"Validated") %>'>
</asp:checkbox>
</ItemTemplate>
<EditItemTemplate>
<asp:CheckBox id=chk2 runat="server"></asp:CheckBox>
</EditItemTemplate>
</asp:TemplateColumn>
Dim chkSelected as checkbox
chkSelected = .FindControl("chk2")
if chkSelected is nothing then
else
if chkSelected.checked then
response.Write("True")
else
Response.Write("False")
end if
end if
What am I missing or doing wrong or what's the secret???
<asp:TemplateColumn HeaderText="Validated">
<ItemTemplate>
<asp:checkbox id=chk1 runat="server" Checked='<%#
DataBinder.Eval(Container.DataItem,"Validated") %>'>
</asp:checkbox>
</ItemTemplate>
<EditItemTemplate>
<asp:CheckBox id=chk2 runat="server"></asp:CheckBox>
</EditItemTemplate>
</asp:TemplateColumn>
Dim chkSelected as checkbox
chkSelected = .FindControl("chk2")
if chkSelected is nothing then
else
if chkSelected.checked then
response.Write("True")
else
Response.Write("False")
end if
end if