List Server Varilables with ASP.NET
Filed in ASP.NET on Nov.02, 2007
Here is the code which will list all the available server variables. (a typical subset of phpinfo() ;))
File: ServVars.aspx
< %@ Page Language="C#" %>
< !DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
protected void Page_Load(object sender, EventArgs e) { int i = 0; foreach (string s in Request.ServerVariables) { Response.Write((++i).ToString() + ". " +s +" = " + Request.ServerVariables[s] + “
“); } }
Related posts:






















