Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am developing a web application where I am using a GridView control to load data from the database.

I have a row that is loaded in editable mode. I have a save button which the user clicks after making the changes, and I want to check the IsDirty flag to stop the user from saving and notify them via an alert box. I'm using a Web User Control (ASCX) to load the GridView. How can I check dirty rows in the grid and stop the user from saving when user clicks the save button or logout button??

P.S. I am using a LoginView for the logout button.

share|improve this question
1  
You need to provide more info. For example: How are you getting the data and binding it to the gridview? Are you using a SQLDataSource or you are using your DAL to retrieve and bind the data? Depending on the case, the answer to your question will be different. Post code if you can. Markup and Code Behind. – Icarus Sep 7 '11 at 15:13
i am using a SQLDataSource to load the Gridview. – Macnique Sep 7 '11 at 15:28

1 Answer

You need to handle the OnRowUpdating event in your grid, for example:

<asp:GridView id="a" runat="server" OnRowUpdating="a_rowUpdating" ... />

In code behind:

protected void a_rowUpdating (object sender, GridViewUpdateEventArgs e)
{
   //Add logic appropriately to know whether you should allow the update or not.
   //If you shouldn't, just set e.Cancel=true as below:
   e.Cancel=true;//will stop from updating.
}

You have access to the Old and New values in the GridViewUpdateEventArgs object. For more details and sample code, check here.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.