Created
April 12, 2016 17:59
-
-
Save duncansmart/dc453ef1a3e5f14e6351b5827931ca0d to your computer and use it in GitHub Desktop.
Dump server environment variables
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#" %> | |
<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