HtmlHelper.RadioButton 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
多載
RadioButton(String, Object) |
傳回 HTML 選項按鈕控制項,此控制項含有指定的名稱和值。 |
RadioButton(String, Object, Boolean) |
傳回 HTML 選項按鈕控制項,此控制項含有指定的名稱、值及預設的已選取狀態。 |
RadioButton(String, Object, IDictionary<String,Object>) |
傳回 HTML 選項按鈕控制項,此控制項含有指定名稱、值和透過屬性字典定義的自訂屬性。 |
RadioButton(String, Object, Object) |
傳回 HTML 選項按鈕控制項,此控制項含有指定名稱、值和透過屬性物件定義的自訂屬性。 |
RadioButton(String, Object, Boolean, IDictionary<String,Object>) |
傳回 HTML 選項按鈕控制項,此控制項含有指定的名稱、值、預設的已選取狀態,以及透過屬性字典定義的自訂屬性。 |
RadioButton(String, Object, Boolean, Object) |
傳回 HTML 選項按鈕控制項,此控制項含有指定的名稱、值、預設的已選取狀態,以及透過屬性物件定義的自訂屬性。 |
RadioButton(String, Object)
傳回 HTML 選項按鈕控制項,此控制項含有指定的名稱和值。
public System.Web.IHtmlString RadioButton (string name, object value);
member this.RadioButton : string * obj -> System.Web.IHtmlString
Public Function RadioButton (name As String, value As Object) As IHtmlString
參數
- name
- String
要指派給 HTML 控制項專案之 name 屬性的值。 name 屬性會定義選項按鈕所屬的群組。
- value
- Object
要指派給專案之 value 屬性的值。
傳回
代表選項按鈕控制項的 HTML 標記。
例外狀況
name
為 null 或空白。
適用於
RadioButton(String, Object, Boolean)
傳回 HTML 選項按鈕控制項,此控制項含有指定的名稱、值及預設的已選取狀態。
public System.Web.IHtmlString RadioButton (string name, object value, bool isChecked);
member this.RadioButton : string * obj * bool -> System.Web.IHtmlString
Public Function RadioButton (name As String, value As Object, isChecked As Boolean) As IHtmlString
參數
- name
- String
要指派給 HTML 控制項專案之 name 屬性的值。 name 屬性會定義選項按鈕所屬的群組。
- value
- Object
要指派給專案之 value 屬性的值。
- isChecked
- Boolean
true 表示已選取控制項;否則為 false。
傳回
代表選項按鈕控制項的 HTML 標記。
例外狀況
name
為 null 或空白。
適用於
RadioButton(String, Object, IDictionary<String,Object>)
傳回 HTML 選項按鈕控制項,此控制項含有指定名稱、值和透過屬性字典定義的自訂屬性。
public System.Web.IHtmlString RadioButton (string name, object value, System.Collections.Generic.IDictionary<string,object> htmlAttributes);
member this.RadioButton : string * obj * System.Collections.Generic.IDictionary<string, obj> -> System.Web.IHtmlString
Public Function RadioButton (name As String, value As Object, htmlAttributes As IDictionary(Of String, Object)) As IHtmlString
參數
- name
- String
要指派給 HTML 控制項專案之 name 屬性的值。 name 屬性會定義選項按鈕所屬的群組。
- value
- Object
要指派給專案之 value 屬性的值。
- htmlAttributes
- IDictionary<String,Object>
元素之自訂屬性的名稱和值。
傳回
代表選項按鈕控制項的 HTML 標記。
例外狀況
name
為 null 或空白。
適用於
RadioButton(String, Object, Object)
傳回 HTML 選項按鈕控制項,此控制項含有指定名稱、值和透過屬性物件定義的自訂屬性。
public System.Web.IHtmlString RadioButton (string name, object value, object htmlAttributes);
member this.RadioButton : string * obj * obj -> System.Web.IHtmlString
Public Function RadioButton (name As String, value As Object, htmlAttributes As Object) As IHtmlString
參數
- name
- String
要指派給 HTML 控制項專案之 name 屬性的值。 name 屬性會定義選項按鈕所屬的群組。
- value
- Object
要指派給專案之 value 屬性的值。
- htmlAttributes
- Object
包含元素之自訂屬性的物件。 這些屬性 (Attribute) 名稱和值是藉由檢查物件之屬性 (Property),透過反映所擷取而來。
傳回
代表選項按鈕控制項的 HTML 標記。
例外狀況
name
為 null 或空白。
適用於
RadioButton(String, Object, Boolean, IDictionary<String,Object>)
傳回 HTML 選項按鈕控制項,此控制項含有指定的名稱、值、預設的已選取狀態,以及透過屬性字典定義的自訂屬性。
public System.Web.IHtmlString RadioButton (string name, object value, bool isChecked, System.Collections.Generic.IDictionary<string,object> htmlAttributes);
member this.RadioButton : string * obj * bool * System.Collections.Generic.IDictionary<string, obj> -> System.Web.IHtmlString
Public Function RadioButton (name As String, value As Object, isChecked As Boolean, htmlAttributes As IDictionary(Of String, Object)) As IHtmlString
參數
- name
- String
要指派給 HTML 控制項專案之 name 屬性的值。 name 屬性會定義選項按鈕所屬的群組。
- value
- Object
要指派給專案之 value 屬性的值。
- isChecked
- Boolean
true 表示已選取控制項;否則為 false。
- htmlAttributes
- IDictionary<String,Object>
元素之自訂屬性的名稱和值。
傳回
代表選項按鈕控制項的 HTML 標記。
例外狀況
name
為 null 或空白。
適用於
RadioButton(String, Object, Boolean, Object)
傳回 HTML 選項按鈕控制項,此控制項含有指定的名稱、值、預設的已選取狀態,以及透過屬性物件定義的自訂屬性。
public System.Web.IHtmlString RadioButton (string name, object value, bool isChecked, object htmlAttributes);
member this.RadioButton : string * obj * bool * obj -> System.Web.IHtmlString
Public Function RadioButton (name As String, value As Object, isChecked As Boolean, htmlAttributes As Object) As IHtmlString
參數
- name
- String
要指派給 HTML 控制項專案之 name 屬性的值。 name 屬性會定義選項按鈕所屬的群組。
- value
- Object
要指派給專案之 value 屬性的值。
- isChecked
- Boolean
true 表示已選取控制項;否則為 false。
- htmlAttributes
- Object
包含元素之自訂屬性的物件。 這些屬性 (Attribute) 名稱和值是藉由檢查物件之屬性 (Property),透過反映所擷取而來。
傳回
代表選項按鈕控制項的 HTML 標記。
例外狀況
name
為 null 或空白。