首页 > 编程 > C# > 正文

.net后台获取html控件值的2种方法

2020-01-24 03:26:39
字体:
来源:转载
供稿:网友
方法1:  
C#
  Label1.Text = Request.Form["txtName"].ToString();
  vb.net
  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下调试通过
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表