asp classic中的应用程序级变量初始化
我有遗留的 ASP 经典网站。如果我使用转储所有应用程序变量
For Each item In Application.Contents
Response.Write item & " = " & Application(item)
Response.Write "<br>"
Next
它们都已初始化,但该应用程序中没有 global.asa 文件。 初始化代码可能在哪里?
I have legacy ASP classic website. If I dump all the application variables using
For Each item In Application.Contents
Response.Write item & " = " & Application(item)
Response.Write "<br>"
Next
They are all initialized but there is no global.asa file in this application.
Where else the initialization code might be?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
只需在任何 .asp 文件中添加此代码,并将此文件添加为每个页面中的顶级用户控件,这样您就可以在所有页面上获取此变量
会话是另一个选项,您可以在会话中分配所有变量并可以在任何页面中访问(我不推荐这样做。)
just add this code in any .asp file and add this file as a top usercontrol in every page so you will get this variable on all pages
session is the other option , you can assign all variable in session and can access in any page (I do not recommend this.)