我有一个在 Session 中存储值的 JQuery 这是我的代码
$(document).ready(function () {
store.set('MySession', 'SessionValue')
});
现在我想使用 Asp.net 获得该会话这是我的代码
protected void Button1_Click(object sender, EventArgs e)
{
Response.Write("<script type='text/javascript'>");
Response.Write("alert('Your Session: " + Session["MySession"].ToString()+ "');");
Response.Write("</script>");
}
当我尝试运行它并捕获错误异常时:捕获了 NullReferenceException。你调用的对象是空的。