会话在 Firefox 中的通用处理程序 .ashx 中不起作用

发布于 2024-08-30 18:54:29 字数 135 浏览 1 评论 0原文

我创建了实现 IRequiresSessionState 的 .ashx,因此我可以在该 ashx 中创建会话变量,它在 IE 中工作,但在 Firefox 中不起作用。 当从其他页面访问此会话变量时,它为 NULL。

有什么想法吗?谢谢。

I have created .ashx which implemented IRequiresSessionState, so I can create session variables in that ashx, it worked in IE, but doesn't work in Firefox.
When access this session variable from other pages it's NULL.

any idea? thx.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

迷路的信 2024-09-06 18:54:29

也许您不允许 Firefox 中的 cookie。检查一下!如果您不想启用 cookie,请启用无 cookie 会话。

Perhaps you don't allow cookies in Firefox. Check that! If you don't want to enable cookies, enable the cookieless session.

煮酒 2024-09-06 18:54:29

在 web.config 中启用 cookie

<system.web>
<sessionState cookieless="true"></sessionState>
</system.web>

Make cookies enabled in web.config

<system.web>
<sessionState cookieless="true"></sessionState>
</system.web>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文