CheckBoxField.OnDataBindField Method (Object, EventArgs)

 

Binds the value of a field to a check box in the CheckBoxField object.

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

Protected Overrides Sub OnDataBindField (
	sender As Object,
	e As EventArgs
)

Parameters

sender
Type: System.Object

The source of the event.

e
Type: System.EventArgs

An EventArgs that contains the event data.

Exception Condition
HttpException

The control to which the field value is bound is not a CheckBox control.

- or -

The field value cannot be converted to a Boolean value.

The OnDataBindField method is a helper method used to bind the value of a field in the data source to a corresponding check box in the CheckBoxField object.

Notes to Inheritors:

When extending the CheckBoxField class, you can override this method to perform a custom binding routine.

.NET Framework
Available since 2.0
Return to top
Show: