.....my problem is .i added a checkbox control to gridview but i can't
able to make navigation when he clicks on that checkbox
plz..help me...
A couple of things first:
On the site you mention (http://www.naukri.com) clicking the checkboxes does
not do anything other than select or deselect the checkboxes...
What you appear to be looking to do is not standard web browser behaviour.
When your users click a checkbox, they will not expect to be redirected to
another page - the standard control for that would be a button or a
hyperlink...
However, what you ask is fairly trivial:
<asp:CheckBox ID="MyCheckBox" runat="server" />
MyCheckBox.Attributes.Add("onclick", "location.href='MyOtherPage.aspx';");
--
Mark Rae
ASP.NET MVP
http://www.markrae.net