LoadPostData Method

Processes post-back data from a server control.

Syntax

Visual Basic Overrides  Protected  Function 
LoadPostData(
        ByVal postDataKey As string,
        ByVal postCollection As NameValueCollection
) As bool
C# protected   override  bool 
LoadPostData(
        string postDataKey,
        NameValueCollection postCollection
);
Managed C++ protected:  bool 
LoadPostData(
        string postDataKey,
        NameValueCollection postCollection
);
JScript protected   override function
LoadPostData(
        postDataKey : string,
        postCollection : NameValueCollection
);

Parameters

postDataKey Required. The key identifier for the control.
postCollection 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.
true Server control's state changes as a result of the post-back.

Applies To

TOOLBAR

See Also

Internet Explorer WebControls, About the Toolbar WebControl