我想将变量发送到global.asax,但是当我调试时,字符串的值仍为null
ajax调用是这样的:
$.post("Global.asax", { strLandCode: LandCode });
我在global.asax中的代码如下所示:
void Session_Start(object sender, EventArgs e)
{
// Code that runs when a new session is started
string strLandcode = Request["strLandCode"];
}
值strLandcode = null
邮件ajax调用在加载默认页面时启动(它发送首次出现的国家/地区的国家/地区代码)
答案 0 :(得分:0)
Global.asax
是ASP.Net内部文件
您无法向其发送请求。