In php there is a function phpinfo(); which displays a whole load of server stats and config information. What is the equivalent in ASP.NET? is there anything?
cheers
You can now use System.Web.Helpers.ServerInfo.GetHtml() (in System.Web.Helpers.dll) which returns an HTML table of all the environment variables, very much like phpinfo() does.
http://msdn.microsoft.com/en-us/library/system.web.helpers.serverinfo.gethtml.aspx
Simple answer: No.
But after enabling tracing for the whole application in the web.config, you can view trace.axd for similiar info.
<configuration>
<system.web>
<trace enabled="true" pageOutput="false" requestLimit="40" localOnly="false"/>
</system.web>
</configuration>
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With