What is the correct method to determine the version of ASP.NET installed on your computer?
Explanation
To identify the ASP.NET version on your system, you should use Response.Write(System.Environment.Version.ToString());. Options A and B are incorrect because 'Version' and 'System.Version' do not provide the runtime version information. Option D is incorrect since it is possible to retrieve the version programmatically.