asp classic中的应用程序级变量初始化

发布于 2024-12-09 01:16:20 字数 260 浏览 0 评论 0原文

我有遗留的 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 技术交流群。

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

发布评论

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

评论(1

感情旳空白 2024-12-16 01:16:20
  1. 只需在任何 .asp 文件中添加此代码,并将此文件添加为每个页面中的顶级用户控件,这样您就可以在所有页面上获取此变量

  2. 会话是另一个选项,您可以在会话中分配所有变量并可以在任何页面中访问(我不推荐这样做。)

  1. 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

  2. session is the other option , you can assign all variable in session and can access in any page (I do not recommend this.)

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