This documentation is archived and is not being maintained.

RadioButtonList::LoadPostData Method

Processes the posted data for the RadioButtonList control.

Namespace:  System.Web.UI.WebControls
Assembly:  System.Web (in System.Web.dll)

protected:
virtual bool LoadPostData(
	String^ postDataKey, 
	NameValueCollection^ postCollection
)

Parameters

postDataKey
Type: System::String

The key identifier for the control, used to index the postCollection.

postCollection
Type: System.Collections.Specialized::NameValueCollection

A System.Collections.Specialized::NameValueCollection that contains value information indexed by control identifiers.

Return Value

Type: System::Boolean
true if the state of the RadioButtonList is different from the last posting; otherwise, false.

The LoadPostData method is used primarily by control developers, when deriving a custom control from the RadioButtonList class.

The LoadPostData method indicates whether the state of the RadioButtonList control has changed. In other words, it determines whether the selected list item in the control is the same as the last posted value. A user changing the selected item in the control changes the SelectedIndex value for the RadioButtonList control. If the same list item is selected in the control, or if the RadioButtonList control is disabled, LoadPostData returns false.

When the LoadPostData method returns true for a control, the ASP.NET page framework invokes the RaisePostDataChangedEvent method for the control.

Windows 7, Windows Vista, Windows XP SP2, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP Starter Edition, Windows Server 2008 R2, Windows Server 2008, Windows Server 2003, Windows Server 2000 SP4, Windows Millennium Edition, Windows 98

The .NET Framework and .NET Compact Framework do not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.

.NET Framework

Supported in: 3.5, 3.0, 2.0
Show: