문제

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?

도움이 되었습니까?

해결책

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

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top