2011-02-07 81 views
0

ID來的Global.asax喜歡一個變量發送到Global.asax的,但是當我調試字符串的值仍是空發送變量與阿賈克斯

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調用啓動時的默認頁面加載(發送時首先出現的國家COUNTRYCODE)

+1

你需要上晚自習的asp.net應用程序生命週期的運作。你現在的心智模式嚴重缺陷。 – asawyer 2011-02-07 14:44:13

回答

0

Global.asax是一個ASP.Net內部文件。
無法向其發送請求。

+0

你能告訴如何製作和使用跨頁面變量嗎? – Thomas 2011-02-07 14:45:53