List all application variables in a web page???

  • Thread starter Thread starter Pradeep
  • Start date Start date
P

Pradeep

Hello,
I would like to know if I can list all the application
variables in my web page and if so, how. Thanks in
advance.

Pradeep
 
I would like to know if I can list all the application
variables in my web page and if so, how. Thanks in
advance.

Here's how I do it in Classic Asp. Maybe there is something here you
can use:

i = 0
For Each i in application.Contents
Response.Write( application.Contents(i) & vbCrLf)
next

-- Rick
 
Back
Top