TextBox.IPostBackDataHandler.LoadPostData(String, NameValueCollection) Method

Definition

For a description of this member, see LoadPostData(String, NameValueCollection). This API is obsolete. For information about how to develop ASP.NET mobile applications, see Mobile Apps & Sites with ASP.NET.

 virtual bool System.Web.UI.IPostBackDataHandler.LoadPostData(System::String ^ key, System::Collections::Specialized::NameValueCollection ^ data) = System::Web::UI::IPostBackDataHandler::LoadPostData;
bool IPostBackDataHandler.LoadPostData (string key, System.Collections.Specialized.NameValueCollection data);
abstract member System.Web.UI.IPostBackDataHandler.LoadPostData : string * System.Collections.Specialized.NameValueCollection -> bool
override this.System.Web.UI.IPostBackDataHandler.LoadPostData : string * System.Collections.Specialized.NameValueCollection -> bool
Function LoadPostData (key As String, data As NameValueCollection) As Boolean Implements IPostBackDataHandler.LoadPostData

Parameters

key
String

The key of the value in the Data collection to be used for this control.

data
NameValueCollection

The collection of name/value pairs posted to the server.

Returns

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

Implements

Remarks

This member is an explicit interface member implementation. It can be used only when the TextBox instance is cast to an IPostBackDataHandler interface.

Applies to

See also