Created
April 18, 2013 16:36
-
-
Save kencenerelli/5414179 to your computer and use it in GitHub Desktop.
Iterate through all of the ServerVariable properties
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <%@ 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