在html静态页面上ajax了Common_Control.ashx中的方法:
$.post("/Control/Common/Common_Control.ashx", { Action: "CheckLogin", username: username }, function(data) {
if (!data.localeCompare("Success")) {
window.open("/View/Page/Behind/index.aspx");
}
else {
$(".owo").html("<font color='red'>kkkkkkkk</font>");
}
});
nginx服务器返回的消息是405,在java中是可以通过RequestMethod.GET或者RequestMethod.POST指定后台方法的请求类型,不知道在ASP.NET如何指定。或者说通过nginx.conf配置文件如何配置来解决405问题,在网上找了一下,也没有找到解决方法,帮帮忙。