搜索
写经验 领红包
 > 美食

aspetweb服务器控件(aspet服务器控件有哪些)

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

asp.net web服务器控件(aspnet服务器控件有哪些)

一、html表单控件

<input type=&34;  name=&34; value=&34; title=&34; checked=&34; runat=&34;><input type=&34; name=&34; value=&34; title=&34; runat=&34;>

获取值:

Request.Form[&34;].ToString()

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

<asp:RadioButtonList ID=&34; runat=&34;  RepeatDirection=&34;>   <asp:ListItem Value=&34; Selected=&34;>男</asp:ListItem>   <asp:ListItem Value=&34;>女</asp:ListItem></asp:RadioButtonList>

获取值:

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

本文内容由小熊整理编辑!