How To: Show System Information Just Like phpinfo()

PHP has functionality to show you the current running configuration of your application and the system it is running on by just calling phpinfo().  It is simple to do this.  Just create a file in your site with the following code: <?php phpinfo(); ?> Unfortunately, ASP.NET MVC does not provide this functionality.  So what I […]