1.get方法接收值写法
string ad = Request["name"];
2.post方法接收值写法
<%string a = Request.Form["fname"]; %> <% string b = Request.Form["lname"]; %> <%=a %> <%=b %>
get 与post 的接收传值方式
原文:http://www.cnblogs.com/annabook/p/3562578.html