您好,登錄后才能下訂單哦!
ASP.NET中如何使用RadioButtonList 單選按鈕組控件,針對這個問題,這篇文章詳細介紹了相對應的分析和解答,希望可以幫助更多想解決這個問題的小伙伴找到更簡單易行的方法。
RadioButtonList 控件表示一個封裝了一組單選按鈕控件的列表控件。
可以使用兩種類型的 ASP.NET 控件將單選按鈕添加到網頁上:各個 RadioButton 控件或一個 RadioButtonList 控件。這兩類控件都允許用戶從一小組互相排斥的預定義選項中進行選擇。使用這些控件,可定義任意數目的帶標簽的單選按鈕,并將它們水平或垂直排列。
一、常用屬性
屬性 | 值 | 作用 |
---|---|---|
RepeatDirection | Horizontal|Vertical | 項的布局方向:水平方向|豎直風向 |
RepeatLayout | Table|Flow | 展現方式:表格|流線型 |
Selected | True|Falsee | 是否為選中狀態 |
二、代碼演示
前臺 RadioButtonList.aspx
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="RadioButtonList.aspx.cs" Inherits="WebControls_RadioButtonList" %> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head runat="server"> <title></title> </head> <body> <form id="form1" runat="server"> <div> <h4>RadioButtonList(單選按鈕組)</h4> <hr /> 請選擇性別:<asp:RadioButtonList ID="radlSex" runat="server" RepeatDirection="Horizontal" RepeatLayout="Flow"> <asp:ListItem Selected="True">男</asp:ListItem> <asp:ListItem>女</asp:ListItem> </asp:RadioButtonList> <br /> <asp:Button ID="btnSubmit" runat="server" Text="提交" onclick="btnSubmit_Click" /> <hr /> 你選擇的性別為:<asp:Label ID="lblState" runat="server"></asp:Label> </div> </form> </body> </html>
后臺 RadioButtonList.aspx.cs
using System; using System.Collections.Generic; using System.Web; using System.Web.UI; using System.Web.UI.WebControls; public partial class WebControls_RadioButtonList : System.Web.UI.Page { protected void Page_Load(object sender, EventArgs e) { } protected void btnSubmit_Click(object sender, EventArgs e) { lblState.Text = radlSex.SelectedValue; } }
關于ASP.NET中如何使用RadioButtonList 單選按鈕組控件問題的解答就分享到這里了,希望以上內容可以對大家有一定的幫助,如果你還有很多疑惑沒有解開,可以關注億速云行業資訊頻道了解更多相關知識。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。