Home  >  Article  >  Web Front-end  >  Implementation code for calling Session using JQuery_jquery

Implementation code for calling Session using JQuery_jquery

WBOY
WBOYOriginal
2016-05-16 18:17:35975browse

Very simple, look at the code, value is the value of session

Copy the code The code is as follows:

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

GetSession.aspx page
Copy code The code is as follows:

string sessionName = "";
protected void Page_Load(object sender, EventArgs e)
{
sessionName = Request.Form["s"].ToString();
Response.Write(Session[ sessionName]);
Response.End();
}
Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn