Skip to content

Instantly share code, notes, and snippets.

@duncansmart
Created April 12, 2016 17:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save duncansmart/dc453ef1a3e5f14e6351b5827931ca0d to your computer and use it in GitHub Desktop.
Save duncansmart/dc453ef1a3e5f14e6351b5827931ca0d to your computer and use it in GitHub Desktop.
Dump server environment variables
<%@ Page Language="C#" %>
<ul>
<% foreach (DictionaryEntry item in Environment.GetEnvironmentVariables()) { %>
<li><%:item.Key%>: <code><%:item.Value%></code></li>
<%}%>
<ul>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment