ScriptManager.LoadPostData(String, NameValueCollection) Method

Definition

Reads form data that is posted from the browser to the server, and determines the source of the asynchronous postback.

protected:
 virtual bool LoadPostData(System::String ^ postDataKey, System::Collections::Specialized::NameValueCollection ^ postCollection);
protected virtual bool LoadPostData (string postDataKey, System.Collections.Specialized.NameValueCollection postCollection);
abstract member LoadPostData : string * System.Collections.Specialized.NameValueCollection -> bool
override this.LoadPostData : string * System.Collections.Specialized.NameValueCollection -> bool
Protected Overridable Function LoadPostData (postDataKey As String, postCollection As NameValueCollection) As Boolean

Parameters

postDataKey
String

The key identifier for the control.

postCollection
NameValueCollection

The collection of all the incoming post data.

Returns

true if the ScriptManager control's state has changed as a result of a postback; otherwise, false.

Remarks

The LoadPostData method is primarily used by control developers to extend the functionality of the ScriptManager control.

Applies to

See also