在C#中怎样获得html控件的值
1个回答
2018-02-06 · 知道合伙人软件行家
关注
展开全部
方法1:
C#
Label1.Text = Request.Form["txtName"].ToString();
方法2:
C#
System.Collections.Specialized.NameValueCollection nc = new System.Collections.Specialized.NameValueCollection(Request.Form);
Label1.Text = nc.GetValues("txtName")[0].ToString();
注: "txtName"为Html控件的"name"属性值
以上代码在Microsoft Visual Studio 2012下调试通过
C#
Label1.Text = Request.Form["txtName"].ToString();
方法2:
C#
System.Collections.Specialized.NameValueCollection nc = new System.Collections.Specialized.NameValueCollection(Request.Form);
Label1.Text = nc.GetValues("txtName")[0].ToString();
注: "txtName"为Html控件的"name"属性值
以上代码在Microsoft Visual Studio 2012下调试通过
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询