如何在C#中获得input文本框中的值
展开全部
2.用request.form[]
用post或get方法submit到接收页面
Request[inputname]
Request.QueryString[inputname]
加runat=server``代码部分用text.value取值
request.form
<input type=text id=txt style=width:213px runat=server value=aaaa/后台string value = request.Form[txt];前台<input type=text id=txt name=txtn style=width:213px value=aaaa/后台string xx = Request.Form[txtn];或前台<input type=text id=txt name=txtn runat=server style=width:213px value=aaaa/后台string xx = .txt.Value;
用post或get方法submit到接收页面
Request[inputname]
Request.QueryString[inputname]
加runat=server``代码部分用text.value取值
request.form
<input type=text id=txt style=width:213px runat=server value=aaaa/后台string value = request.Form[txt];前台<input type=text id=txt name=txtn style=width:213px value=aaaa/后台string xx = Request.Form[txtn];或前台<input type=text id=txt name=txtn runat=server style=width:213px value=aaaa/后台string xx = .txt.Value;
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询