Live Chat Icon For mobile
Live Chat Icon

How the computer’s name,OSVersion,Memory Working set can be identified using ASP.NET?

Platform: ASP.NET| Category: ASP.NET

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());

Share with

Related FAQs

Couldn't find the FAQs you're looking for?

Please submit your question and answer.