Very simple, look at the code, value is the value of session
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
string sessionName = "";
protected void Page_Load(object sender, EventArgs e)
{
sessionName = Request.Form["s"].ToString();
Response.Write(Session[ sessionName]);
Response.End();
}