Click or drag to resize

TimePickerExtractPostbackValue Method

Construct a DateTime (or null) value from posted back form values. This method can be called to extract a value from a posted-back form early in the page's life-cycle before controls have been populated from posted-back values.

Namespace:  NetQuarry.WebControls
Assembly:  EAP.WebControls (in EAP.WebControls.dll) Version: 2.0.0.0 (4.6.8.0)
Syntax
public static Nullable<DateTime> ExtractPostbackValue(
	NameValueCollection form,
	string prefix
)

Parameters

form
Type: System.Collections.SpecializedNameValueCollection
The request's form values.
prefix
Type: SystemString
The control's full-qualified prefix, e.g. "page1$start_time$".

Return Value

Type: NullableDateTime
The time-only value constructed from expected form values.
See Also