How can we write code to Add CheckBox Control In DataGrid

Showing Answers 1 - 2 of 2 Answers

gouri

  • Aug 30th, 2006
 

Add a template column and then add checkox to it.

  Was this answer useful?  Yes

GuruPrasad

  • Oct 31st, 2006
 

First make datagrid propery autogenerate =false then

<colums>

 <asp:templatecolums>

    <itemtemplates>

       <asp:checkbox id="chk" runat="Server" OncheckedChange="ChangeFunction"></checkbox>

</itemtemplates>

</asp:templatecolums>

</columns>

  

  Was this answer useful?  Yes

Give your answer:

If you think the above answer is not correct, Please select a reason and add your answer below.

 

Related Answered Questions

 

Related Open Questions