ASP.NET 中的静态变量

发布于 2024-12-21 13:38:33 字数 167 浏览 2 评论 0原文

我正在 vb.net 中为 Web 应用程序编写代码。我在 vb 代码中使用共享变量。

对于点击 Web 应用程序的用户,假设静态变量值为 3。同样,当另一个用户点击同一个 Web 应用程序时,静态变量是否会再次变为 3,或者他的会话的静态变量是否会具有单独的值?

抱歉,如果问题太初级。

I am writing a code for a webapplication in vb.net. I am using a shared variable in the vb code.

Consider the static variable value is 3 for a user who hits the web application. Again when another user hits the same web application, whether the static variable will be 3 again or whether he will have a separate value for static variable for his session?

Sorry, if the question is too rudumentary.

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

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

发布评论

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

评论(1

十雾 2024-12-28 13:38:33

每个会话的静态变量都相同,每个用户的静态变量也相同。

静态变量在 Web 应用程序中的用途非常有限,因为您不能为每个用户分配一个静态变量,而只能获得一个。

The static variable will be the same for each session, and also the same for each user.

Static variables have very limited use in web applications, as you don't get one per user, you only get one.

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