ASP.Net 会话状态问题

发布于 2024-10-20 22:22:14 字数 233 浏览 4 评论 0原文

我在 if 语句中使用会话变量。

if(SessionVariable == "AString") {

做某事;

问题是,

如果我在 InState 中维护会话,则 If 中的比较工作正常,但如果我使用 SQLServer 模式则不行。

我犯的错误是没有将会话变量转换为字符串。

为什么它适用于 InState 会话而不适用于 SQLServer 会话?

I make use of Session Variable in a if statement.

if(SessionVariable == "AString")
{

Do Something;

}

Problem is the comparison in If works fine if I maintain the session in InState, but doesn't if I use the SQLServer Mode.

The mistake I make is not convert the session variable to string.

Why does it work with InState Sessions and doesn't with SQLServer Sessions?

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

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

发布评论

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

评论(1

翻身的咸鱼 2024-10-27 22:22:14

当您使用 Sql Server 会话状态时,变量将被序列化。当您选择该变量时,您将获得必须转换的对象类型。另一方面,如果您使用InProc,则运行时知道该变量的基础类型

When you use Sql Server Session State, the variables are serialized. When you pick that variable, you get the object type which you must have to be converted. On the other hand if you use InProc, the run time knows the underlying type of that variable

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