<%@ Page language="c#" AutoEventWireup="false" %>
If you see this page, ASP.NET <%=Environment.Version.ToString()%> works properly.

Environment variables

<% int cnt = 0; string class_name; foreach(System.Collections.DictionaryEntry de in Environment.GetEnvironmentVariables()) { ++cnt; class_name = (cnt%2 == 0)? "evenrow" : "oddrow"; Response.Write(String.Format("", class_name, de.Key, de.Value)); } %>
NameValue
{1}{2}