WebForm:(假如请求这个页面有get和post两种情况)
Request.ServerVariables("Request_Method")="POST"
Request.ServerVariables("Request_Method")="GET"
Request.RequestType=="POST"
Request.RequestType=="GET"
protected void Page_Load(object sender, EventArgs e)
{
if (Request.RequestType == "POST")//表示请求过来的是Post请求
{
//获取参数值的方法
string userName = Request.Form["UserName"];
Response.Write(userName);
Response.End();
}else if(Request.RequestType == "GET")//表示请求过来的是Get请求
{
//获取参数值的方法
string userName = Request.QueryString["UserName"];
Response.Write(userName);
Response.End();
}
}
mvc的控制器中
[HttpPost]//表示请求过来的是Post请求
[ActionName("Index")]//当前action的名字为Index
public ActionResult Post(string UserName){
return null;
}
[HttpGet]//表示请求过来的是get请求
[ActionName("Index")]//当前action的名字为Index
public ActionResult Get(string UserName){
return null;
}