How to print similar information as phpinfo() but 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? Malik An empty page with this header should do the trick: <%@ Page Trace="true" Language="C#" ContentType="text/html" ResponseEncoding="utf-8" %> Rick http://code.google.com/p/aspnetsysinfo/ The project is a ASP.Net System Information Prober. It's a single page which trying to get as much as possible of useful hosting information. The concept is similar to PHP page which contains phpinfo() ..