An example of how to view details of the web servers environment
Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load
Dim sb As New StringBuilder
sb.AppendLine("Machine Name: " & Environment.MachineName & "<br>")
sb.AppendLine("OS Version: " & Environment.OSVersion.VersionString & "<br>")
sb.AppendLine("No. of Processors: " & Environment.ProcessorCount & "<br>")
sb.AppendLine("Uptime: " & TimeSpan.FromMilliseconds(Environment.TickCount).Days & " days, ")
sb.AppendLine(TimeSpan.FromMilliseconds(Environment.TickCount).Hours & " hours, ")
sb.AppendLine(TimeSpan.FromMilliseconds(Environment.TickCount).Minutes & " minutes<br>")
sb.AppendLine("User Domain Name: " & Environment.UserDomainName & "<br>")
sb.AppendLine("Interactive User: " & Environment.UserInteractive & "<br>")
sb.AppendLine("Username: " & Environment.UserName & "<br>")
Label1.Text = sb.ToString
End Sub