RadioButtonList.LoadPostData(String, NameValueCollection) 方法

定义

处理 RadioButtonList 控件的已发布数据。

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

参数

postDataKey
String

控件的键标识符,用于对 postCollection 进行索引。

postCollection
NameValueCollection

包含由控件标识符索引的值信息的 NameValueCollection

返回

如果 RadioButtonList 的状态不同于上次发布的状态,则为 true;否则为 false

注解

方法 LoadPostData 主要由派生自 RadioButtonList 类的自定义控件中的控件开发人员使用。

方法 LoadPostData 指示控件的状态 RadioButtonList 是否已更改。 换句话说,它确定控件中选定的列表项是否与上次发布的值相同。 用户更改控件中的选定项会 SelectedIndex 更改控件的值 RadioButtonList 。 如果在 控件中选择了相同的列表项,或者如果禁用了该 RadioButtonList 控件, LoadPostDatafalse返回 。

当 控件的 LoadPostData 方法返回 true 时,ASP.NET 页框架将 RaisePostDataChangedEvent 调用控件的 方法。

适用于

另请参阅