ASP.NET 中的静态变量
我正在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
每个会话的静态变量都相同,每个用户的静态变量也相同。
静态变量在 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.