如何在aspx网页中声明公共变量和公共子?
如何声明可在我的 Web 应用程序内的所有页面中使用的公共变量 .aspx
网页?
和/或创建一个公共子
?
How do declare a public variable .aspx
web page that can be used in all the pages within my web application?
And/or create a Public Sub
?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
也许您可以使用 ViewState 将值保留到会话中。
我认为不可能创建“全局变量”,因为每次页面加载时该值都会丢失......
Maybe you can work with ViewState to persist values into the session.
I think that isn't possible to create 'global variables', since the value is lost at every page load...
公共子系统,假设您使用 VB:
全局变量:向 VB 添加一个模块并向该模块添加一个变量。您可以从任何地方使用
ModuleName.VariableName
调用该变量。当您在 ASPX 页面的代码隐藏中声明公共变量并声明它是共享的时,您可以从 Web 应用程序中的任何位置使用
YourPageName.VariableName
访问它。请注意,此变量在所有进程或请求之间共享。A public sub, assuming you use VB:
A global variable: add a module to your VB and add a variable to that module. You can call that variable with
ModuleName.VariableName
from everywhere.When you declare a public variable in the code-behind of your ASPX page, and you declare it shared, you can access it with
YourPageName.VariableName
from anywhere in your web application. Note that this variable is shared between all processes or requests.您可以使用会话或应用程序状态来保存网站所需的全局数据。
并在一段时间后过期(不要
记住多少)
在应用程序启动时创建
并且只要
应用程序正在运行。
You can use Session or Application state to hold global data needed for your website.
and expires after some time(do not
remember how much)
is created when application started
and will persist as long as
application is running.