码迷,mamicode.com
首页 > Windows程序 > 详细

C# 判断当前请求是GET还是POST

时间:2020-04-28 21:35:49      阅读:108      评论:0      收藏:0      [点我收藏+]

标签:request   eth   stty   variable   serve   tty   variables   post   method   

方法一:

HttpContext.Current.Request.RequestType == "POST";   //当前请求为:POST 

HttpContext.Current.Request.RequestType == "GET";   //当前请求为:GET

 

方法二:

if(Request.ServerVariables["REQUEST_METHOD"] =="POST")

{

}     //当前请求为:POST 

if(Request.ServerVariables["REQUEST_METHOD"] =="GET")

{

}      //当前请求为:GET

C# 判断当前请求是GET还是POST

标签:request   eth   stty   variable   serve   tty   variables   post   method   

原文地址:https://www.cnblogs.com/selenazhou/p/12797356.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!