ASP.NET HtmlInputRadioButton 控件
asp.net htmlinputradiobutton 控件

定義和用法
htmlinputradiobutton 控件用于控制 <input type="radio"> 元素。在 html 中,該元素用于創(chuàng)建單選按鈕。
屬性
屬性 | 描述 |
---|---|
attributes | 返回該元素的所有屬性名稱和值對。 |
checked | 布爾值,規(guī)定該元素是否被選中。 |
disabled | 布爾值,指示是否禁用該控件。默認(rèn)是 false。 |
id | 元素的唯一 id。 |
name | 單選按鈕組的名稱。 |
runat | 規(guī)定該控件是一個服務(wù)器控件。必須被設(shè)置為 "server"。 |
style | 設(shè)置或返回被應(yīng)用到該控件的 css 屬性。 |
tagname | 返回元素的標(biāo)簽名。 |
type | 元素的類型。 |
value | 元素的值。 |
visible | 布爾值,指示該控件是否可見。 |
實(shí)例
htmlinputradiobutton
在本例中,我們在 .aspx 文件中聲明了三個 htmlinputradiobutton 控件,一個 htmlinputbutton 控件,一個 htmlgeneric 控件(記得把控件嵌套在 htmlform 控件中)。當(dāng)提交按鈕被觸發(fā)時,會執(zhí)行 submit 子例程。submit 子例程有三種響應(yīng)方式:如果選擇了帶有 id="r1" 的單選按鈕,則服務(wù)器向 p 元素發(fā)送消息 "your favorite color is red"。如果選擇了帶有 id="r2" 的單選按鈕,則服務(wù)器向 p 元素發(fā)送消息 "your favorite color is green"。如果選擇了帶有 id="r3" 的單選按鈕,則服務(wù)器向 p 元素發(fā)送消息 "your favorite color is blue"。

相關(guān)文章
- ASP 表單
- ASP Cookies
- ASP Server 對象
- ASP Read 方法
- ASP Write 方法
- ASP Drive 屬性
- ASP Type 屬性
- ASP Keys 方法
- ASP CacheControl 屬性
- ASP Pics 屬性
- ASP BinaryWrite 方法
- ASP BinaryRead 方法
- ASP StaticObjects 集合
- ASP Contents.RemoveAll 方法
- ASP Abandon 方法
- ASP HTMLEncode 方法
- ASP ASPError 對象的屬性
- ASP GetFileName 方法
- ASP GetSpecialFolder 方法
- ASP MoveFile 方法