tags:

views:

208

answers:

3

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

A: 

The answer is no, but I think the answer to this question will be helpful to you: http://stackoverflow.com/questions/544209/is-there-an-equivalent-to-phpinfo-in-asp-net

Smazy
A: 

There's not a phpinfo style function in ASP.NET. I think you can enable tracing in Web.config and navigate to trace.axd to see similar stuff.

Mehrdad Afshari
+1  A: 

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>
M. Jahedbozorgan