I've looped over the Request.ServerVariables
collection in ASP.NET, but it's not as comprehensive as phpinfo()
.
How can I print all that information, including server software, drivers, etc, for ASP.NET?
I've looped over the Request.ServerVariables
collection in ASP.NET, but it's not as comprehensive as phpinfo()
.
How can I print all that information, including server software, drivers, etc, for ASP.NET?
http://code.google.com/p/aspnetsysinfo/
Quick google result:
http://forums.asp.net/p/901862/2087653.aspx
According to them, the answer is no.
For ASP classic with VBScript (not ASP.net - see disclaimer below) there is a
Sub aspinfo()
on Planet Source Code, to which I've made very minor changes (moving the call toaspinfo()
and moving the top authorship/comment block).Here is the source of my modified version of Dennis Pallett's
aspinfo()
, which can be saved asaspinfo.asp
on the webserver in question.Disclaimer: Note that this was initially submitted as an edit to Rob's answer, but it was suggested that it be made as an entirely new answer response instead. Note also that, as frankadelic points out in a comment to Rob's answer, this response doesn't address the OP's question, as that question was for ASP.net, not ASP classic.
The following might work?
I'm not sure what info phpinfo() spits out.
An empty page with this header should do the trick:
Have a look at glimpse.
Here's the request tab as shown in the browser. http://getglimpse.com/Content/Plugin/Request.jpg
There are other tabs with information, and it's possible to write plugins.