GridViewUpdatedEventArgs.Exception Property
.NET Framework 3.0
Gets the exception (if any) that was raised during the update operation.
Namespace: System.Web.UI.WebControls
Assembly: System.Web (in system.web.dll)
Assembly: System.Web (in system.web.dll)
/** @property */ public Exception get_Exception ()
public function get Exception () : Exception
Not applicable.
Property Value
An Exception object that represents the exception that was raised during the update operation.Use the Exception property to determine the exception (if any) that was raised during the update operation. If no exceptions were raised, this property returns a null reference (Nothing in Visual Basic).
Note: |
|---|
| If an exception was raised and you decide to handle the exception in the event handler, be sure to set the ExceptionHandled property to true; otherwise, the exception is thrown again by the GridView control. |
Community Additions
ADD
Show:
Note: