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
-
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
From Smazy -
There's not a
phpinfostyle function in ASP.NET. I think you can enable tracing inWeb.configand navigate totrace.axdto see similar stuff.From Mehrdad Afshari -
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>From M. Jahedbozorgan
0 comments:
Post a Comment