Question: How can I find out my computer's machine name with ASP.NET?
Answer:
<%
Response.Write("The MachineName is " &
Sstem.Environment.MachineName.ToString() )
%>
Question: How can I find out m memor working set with ASP.NET?
Answer:
<%
Response.Write("The Working Set is " &
Sstem.Environment.WorkingSet.ToString() & " btes")
%>
Question: How can I find out m Sstem Director with ASP.NET?
Answer:
<%
Response.Write("The Sstem Director is " &
Sstem.Environment.SstemDirector.ToString() )
%>
Question: How can I find out the OS Version m computer is running with ASP.NET?
Answer:
<%
Response.Write("The OS Version is " &
Sstem.Environment.OSVersion.ToString() )
%>
Question: How can I find out the USERPROFILE environment variable with ASP.NET?
Answer:
<%
Response.Write("The USERPROFILE environment variable is : " &
Environment.GetEnvironmentVariable("USERPROFILE"))
%>
Question: How can I find out what version of ASP.NET is running on my computer?
Answer:
<%
Response.Write("The .NET version is " &
Sstem.Environment.Version.ToString() )
%>
Question: How can I find out what version of ASP.NET is running on my computer?
Answer:
<%
Response.Write("The .NET version is " &
Sstem.Environment.Version.ToString() )
%>
Question: How can I find out where the temp director is located?
Answer:
<%
Response.Write("The TEMP environment variable is : " &
Environment.GetEnvironmentVariable("TEMP"))
%>
Question: How can I find out which account ASP.NET is running as?
Answer:
<%
Response.Write("ASP.NET is running as the account : " &
Environment.Username)
%>