Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
请任何人都可以建议为什么我无法使用我的 ASPX 页面访问受保护变量后面的代码,如下所示
//代码后面//
//ReadInMessage.ASPX 页面//
重建解决方案后,可以通过ASPX页面访问变量背后的代码,谢谢大家的支持
答案是——因为,你不能。
您可以使用Session变量本身将数据发送到aspx
Session
aspx
<%= Response.Write(Convert.ToString(Session["messageID"]))%>