Skip to content

Instantly share code, notes, and snippets.

@kencenerelli
Created April 18, 2013 16:36
Show Gist options
  • Select an option

  • Save kencenerelli/5414179 to your computer and use it in GitHub Desktop.

Select an option

Save kencenerelli/5414179 to your computer and use it in GitHub Desktop.
Iterate through all of the ServerVariable properties
<%@ Page Language="C#" %>
<%foreach (string var in Request.ServerVariables)
{
Response.Write(var + " " + Request[var] + "<br />");
}
%>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment