IPostBackDataHandler.LoadPostData Method
Processes post-back data for a server control.
Syntax
Visual Basic Public Function
IPostBackDataHandler.LoadPostData(
ByVal sPostData As string,
ByVal oPostCollection As NameValueCollection
) As boolC# public bool
IPostBackDataHandler.LoadPostData(
string sPostData,
NameValueCollection oPostCollection
);Managed C++ public: bool
IPostBackDataHandler.LoadPostData(
string sPostData,
NameValueCollection oPostCollection
);JScript public function
IPostBackDataHandler.LoadPostData(
sPostData : string,
oPostCollection : NameValueCollection
);
Parameters
sPostData Required. 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 control's state does not change as a result of the post-back. true
Server control's state changes as a result of the post-back.
Applies To
BasePostBackControl, TOOLBARDROPDOWNLIST, TOOLBARTEXTBOX
See Also