Hello,when i was working in the Gridview and when i created a template field and added a checkbox so that when the user views the gridview they can select multiple rows. I was having that working great but the check boxes are always equalling false when I use the click even for a button.
Any suggestion to this problem !!!!!!!!!!!!!!
Hi this problem is seen by me also so you make clear you do not bind your GV on each postback in Page_Load() event.
protected void Page_Load()
{
if(!IsPostBack)
//Bind your GV
}
hope this help to resolve the prob..
Leave a Reply
You must be logged in to post a comment.