SqlDataSourceStatusEventArgs::ExceptionHandled Property

 

Gets or sets a value indicating whether an exception thrown by the database has been handled.

Namespace:   System.Web.UI.WebControls
Assembly:  System.Web (in System.Web.dll)

public:
property bool ExceptionHandled {
	bool get();
	void set(bool value);
}

Property Value

Type: System::Boolean

true if an exception thrown by the database has been handled and should not be thrown by the SqlDataSource control; otherwise, false.

If the database throws an exception, the ExceptionHandled property is set to false and the exception is wrapped by the Exception property. If you use an SqlDataSourceStatusEventHandler, you can check the Exception property and handle the exception. If you handle the exception, set the ExceptionHandled property to true or the SqlDataSource control will throw an exception.

.NET Framework
Available since 2.0
Return to top
Show: