后台得到客户端控制如input的值


Warning: Undefined array key "HTTP_REFERER" in /www/wwwroot/prod/www.enjoyasp.net/wp-content/plugins/google-highlight/google-hilite.php on line 58

? <input type=”text” id = “Text1″ name=”myText111” />
在后台用:Request.Form[“myText111”] 调用前台的值

遍历页面传来的所有值
int loop1;
NameValueCollection coll=Request.Form;?
string[] arr1 = coll.AllKeys;
for (loop1 = 0; loop1 < arr1.Length; loop1++)
{ Response.Write(“Form: ” + arr1[loop1] + “<br>”); }