asp.net后台获取前台html控件的值的方法

时间:2022-11-28 19:24:21
asp.net后台获取前台html控件的值的方法   protected   void  Button1_Click( object  sender, EventArgs e)
asp.net后台获取前台html控件的值的方法asp.net后台获取前台html控件的值的方法    
{
asp.net后台获取前台html控件的值的方法
asp.net后台获取前台html控件的值的方法        System.Collections.Specialized.NameValueCollection nc 
= new System.Collections.Specialized.NameValueCollection(Request.Form);
asp.net后台获取前台html控件的值的方法
asp.net后台获取前台html控件的值的方法        Response.Write(nc.GetValues(
"txtname")[0].ToString());
asp.net后台获取前台html控件的值的方法    }

 

此方法只能对<input type="text"  />等类型的控件数据进行获取,对于select控件,如果value和text不一样,只能获取value。