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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top