It is very often a developer or programmer want to know the system/server variable of a server that without their right to access to the server back-end.
With ASP.Net, you could get the server variable through scripting.
When you need these information from your IIS based server, create a aspx file named variable and place the script as below based on C# or VB.
VB
<% @ Page Language="VB" %> <% For Each var as String in Request.ServerVariables Response.Write(var & " " & Request(var) & "<br>") Next %>
C#
<% @ Page Language="C#" %> <% foreach (string var in Request.ServerVariables) { Response.Write(var + " " + Request[var] + "<br>"); } %>
Well Done, hope this is useful for the programmer.