Skip to content

Instantly share code, notes, and snippets.

@dylanmei
Created September 10, 2013 15:41
Show Gist options
  • Select an option

  • Save dylanmei/6511294 to your computer and use it in GitHub Desktop.

Select an option

Save dylanmei/6511294 to your computer and use it in GitHub Desktop.
ASPX Server Variables
<%@ Page language="C#" %>
<html>
<body>
<table border="1">
<tr>
<td><b>Server Variable</b></td>
<td><b>Value</b></td>
</tr>
<% foreach (string strKey in Request.ServerVariables) { %>
<tr>
<td><%= strKey %></td>
<td><%= Request.ServerVariables[strKey] %></td>
</tr>
<% } %>
</table>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment