如果我在其中一个 .aspx 页面中执行以下操作:
Session["MySess123"] = "Some plain text";
然后从另一个 .ashx 页面读取它:
string str = Session["MySess123"].ToString();
Some plain text
以任何方式在客户端浏览器中可见吗?
或者换句话说,“入侵者”访问我的会话变量有多容易?
PS。我不会以这种方式存储任何敏感信息。我用它来存储Captchas。
如果我在其中一个 .aspx 页面中执行以下操作:
Session["MySess123"] = "Some plain text";
然后从另一个 .ashx 页面读取它:
string str = Session["MySess123"].ToString();
Some plain text
以任何方式在客户端浏览器中可见吗?
或者换句话说,“入侵者”访问我的会话变量有多容易?
PS。我不会以这种方式存储任何敏感信息。我用它来存储Captchas。