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

According to the msdn documentation, as you can see on the diagram, a server control's "Data binding events" occurs after all "control changed events". So in the case of a DetailsView control, the ItemInserted event would happen before the database operation? Obviously this cannot be correct?

share|improve this question

1 Answer

up vote 0 down vote accepted

Check out the MSDN article for the control's event.

In the case of a DetailsView.ItemInserted Event:

The ItemInserted event is raised when an Insert button within the DetailsView control is clicked, but after the insert operation. This allows you to provide an event handler that performs a custom routine, such as checking the results of the insert operation, whenever this event occurs.

There is also the DetailsView.ItemInserting Event that is raised before the insert to the database

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.