Posted on: 8/29/2014 2:00:48 PM | Views : 401

Hi i'm using this code:

<body> <form id="form1" runat="server"> <asp:Label ID="Label1" runat="server" Text=""></asp:Label> <asp:GridView ID="GridView1" runat="server" AutoGenerateColumns="false"> <Columns> <asp:TemplateField> <ItemTemplate> <asp:CheckBox ID="chkSelect" runat="server" /> </ItemTemplate> </asp:TemplateField> <asp:BoundField DataField="Id" HeaderText="Id" ItemStyle-Width="30" /> <asp:BoundField DataField="Name" HeaderText="Name" ItemStyle-Width="150" /> <asp:TemplateField HeaderText="Email"> <ItemTemplate> <asp:HyperLink ID="lnkEmail ...

Go to the complete details ...