600字范文,内容丰富有趣,生活中的好帮手!
600字范文 > ASP.NET中 RadioButtonList(单选按钮组)的使用

ASP.NET中 RadioButtonList(单选按钮组)的使用

时间:2021-12-01 12:38:08

相关推荐

ASP.NET中 RadioButtonList(单选按钮组)的使用

中 RadioButtonList(单选按钮组)的使用。

RadioButtonList(单选按钮组)

请选择性别:

你选择的性别为: 女 /RadioButtonList.aspx

<%@ Page Language="C#" AutoEventWireup="true" CodeFile="RadioButtonList.aspx.cs" Inherits="WebControls_RadioButtonList" %><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="/1999/xhtml"><head runat="server"><title></title></head><body><form id="form1" runat="server"><div><h3>RadioButtonList(单选按钮组)</h3><table style="width: 100%;"><tr><td class="style1">&nbsp; 属性</td><td class="style2">值</td><td>作用</td></tr><tr><td class="style1">&nbsp; RepeatDirection</td><td class="style2">&nbsp;Horizontal|Vertical&nbsp;</td><td>项的布局方向:水平方向|竖直风向</td></tr><tr><td class="style1">&nbsp; RepeatLayout</td><td class="style2">&nbsp;Table|Flow</td><td>展现方式:表格|流线型&nbsp;</td></tr><tr><td class="style1">&nbsp; Selected</td><td class="style2">&nbsp;True|Falsee</td><td>是否为选中状态</td></tr></table><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;}}

/ylbtech/WebForm-BasicControl-HTML.rar

转自:/ylbtech/archive//03/06/2944837.html

本内容不代表本网观点和政治立场,如有侵犯你的权益请联系我们处理。
网友评论
网友评论仅供其表达个人看法,并不表明网站立场。