SqlDataSourceStatusEventArgs.ExceptionHandled Property

Note: This property is new in the .NET Framework version 2.0.

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 */
public boolean get_ExceptionHandled ()

/** @property */
public void set_ExceptionHandled (boolean value)

public function get ExceptionHandled () : boolean

public function set ExceptionHandled (value : boolean)

Property Value

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.

Windows 98, Windows 2000 SP4, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition

The .NET Framework does not support all versions of every platform. For a list of the supported versions, see System Requirements.

.NET Framework

Supported in: 2.0

Community Additions

ADD
Show: