用JQuery調用Session的方法

很簡單,看代碼,value爲session的值ajax

Jquery:session

 

   
   
   
   
function GetSession(value) {
var temp;
jQuery.ajax({
type:
" POST " ,
url:
" GetSession.aspx " ,
async:
false , // 是否ajax同步
data: " s= " + value,
success:
function (msg) {
temp
= msg;
}
});
return temp;
}

GetSession.aspx頁面async

   
   
   
   
string sessionName = "" ;
protected void Page_Load( object sender, EventArgs e)
{
sessionName
= Request.Form[ " s " ].ToString(); Response.Write(Session[sessionName]); Response.End(); }
相關文章
相關標籤/搜索