Anyone know how to retain the information entered on a Edit Form when an error is captured on the ItemUpdated event?
I am trying to keep the information the user entered prior to submitting the update, NOT rebind the data from the datasource.
I am trying to keep the information the user entered prior to submitting the update, NOT rebind the data from the datasource.
Protected Sub RadGrid1_ItemUpdated(ByVal source As Object, ByVal e As Telerik.Web.UI.GridUpdatedEventArgs) Handles RadGrid1.ItemUpdated
If Not e.Exception Is Nothing Then
e.KeepInEditMode =
True
e.ExceptionHandled =
True
End If
End Sub