龙空技术网

asp.net中的html控件和服务器控件及其值的获取

洞悉科学 236

前言:

眼前大家对“aspbuttoncss”大约比较注重,咱们都想要学习一些“aspbuttoncss”的相关知识。那么小编同时在网上收集了一些对于“aspbuttoncss””的相关资讯,希望同学们能喜欢,你们快快来学习一下吧!

一、html表单控件

<input type="radio"  name="nw" value="1" title="内网" checked="" runat="server"><input type="radio" name="nw" value="2" title="外网" runat="server">

获取值:

Request.Form["nw"].ToString()

二、RadioButtonList服务器控件(单选框)

<asp:RadioButtonList ID="RadioButtonList1" runat="server"  RepeatDirection="Horizontal">   <asp:ListItem Value="1" Selected="True">男</asp:ListItem>   <asp:ListItem Value="2">女</asp:ListItem></asp:RadioButtonList>

获取值:

//获取Text的值RadioButtonList1.SelectedItem.Text//获取Value的值RadioButtonList1.SelectedItem.Value

标签: #aspbuttoncss