共用方式為


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 如果停用控制項, LoadPostData 則會傳 false回 。

當控件的 LoadPostData 方法傳 true 回時,ASP.NET 頁面架構會 RaisePostDataChangedEvent 叫用 控件的 方法。

適用於

另請參閱