RadioButton.LoadPostData(String, NameValueCollection) Method

Definition

Processes postback data for the RadioButton control.

protected:
 override bool LoadPostData(System::String ^ postDataKey, System::Collections::Specialized::NameValueCollection ^ postCollection);
protected override bool LoadPostData (string postDataKey, System.Collections.Specialized.NameValueCollection postCollection);
override this.LoadPostData : string * System.Collections.Specialized.NameValueCollection -> bool
Protected Overrides 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 incoming name values.

Returns

true if the data for the RadioButton has changed; otherwise, false.

Remarks

The LoadPostData method is called by the LoadPostData method. It is used primarily by control developers extending the functionality of the RadioButton control.

Applies to

See also