A useful piece of code I found on the Internet:
When you install .NET IE adds a header information in requests that are sent out.
So the following code:
Version verHave = Request.Browser.ClrVersion;Version verNeed = new Version("1.0.3705");
if( verHave < verNeed ) ...
would help you detect the CLR version running on the client system through a web application. (The above code actually detects if the CLR version is 1.0.3705 or higher).
I can think of a few scenarios where this can be useful:
Remember Me
Page rendered at Monday, March 15, 2010 7:00:24 AM (India Standard Time, UTC+05:30)
Disclaimer The opinions expressed herein are my own personal opinions and do not represent the views of Microsoft Corporation in anyway.