How can you determine what version(s) of ASP.NET are running on a system?

Options
- Response.Write(System.Environment.Version.ToString() );
- Response.Write(Version.ToString() );
- Response.Write(System.Version.ToString() );
- not possible


CORRECT ANSWER : Response.Write(System.Environment.Version.ToString() );

Write your comments


Enter the code shown above:

(Note: If you cannot read the numbers in the above image, reload the page to generate a new one.)


Advertisement