How to create unbound datagrid that contains unbound checkboxes??

liunx

Guest
Hi,

How to create unbound datagrid that contains unbound checkboxes??
please help me in this... :(

ASP.NET/VB.NET

Regards,
Ninacan you explain it more. unbound means-----with out database????

rajlook.. i am trying to create a datagrid that contains many checkboxes...and the checkboxes must be unchecked..can you tell me how to do that??Use inside grid as following::::::::::::::

<asp:TemplateColumn>
<ItemTemplate>
<asp:CheckBox ID="chk1" Checked="False" Runat="server" />
</ItemTemplate>
</asp:TemplateColumn>thank you lrrajesh ;)
 
Back
Top