Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Processes post-back data from a server control.
Syntax
Visual Basic Overridable Protected Function
LoadPostData(
ByVal postDataKey As string,
ByVal oPostCollection As NameValueCollection
) As boolC# protected virtual bool
LoadPostData(
string postDataKey,
NameValueCollection oPostCollection
);Managed C++ protected: virtual bool
LoadPostData(
string postDataKey,
NameValueCollection oPostCollection
);JScript protected function
LoadPostData(
postDataKey : string,
oPostCollection : NameValueCollection
);
Parameters
postDataKey Required. The key identifier for the control. oPostCollection Required. The collection of all incoming name values.
Return Value
Returns one of the following possible values.
false Default. Server controls do not change state as a result of the post-back. trueServer control's state changes as a result of the post-back.
Applies To
BasePostBackControl
See Also