我是ASP.Net的新手,我正在测试重定向后会话的工作方式。问题是我重定向后无法检索我的数据。
代码表单1:
Session["person"] = person; // Object
Session["relation"] = relation; // Object
Response.Redirect("~/Fom2.aspx", false); // found online this has to be false to keep session token
代码表2:
Person person = (Person)(Session["person"]); //null
Relation relation = (Relation)(Session["relation"]); //null
任何人都可以帮助我吗?日Thnx
答案 0 :(得分:0)
Session["string"]
中的字符串必须完全相同。从表单2中的Session["person "]
中删除空格,使其为Session["person"]