The name of the computer can be identified by the following code-
Response.Write('The MachineName is ' & System.Environment.MachineName.ToString())
//The OSVersion can be identified by the following code-
Response.Write(System.Environment.OSVersion.ToString());
//The Memory Working set can be identified by the following code-
Response.Write(System.Environment.WorkingSet.ToString());
Permalink