We have an old asp.net 1.1 application, which is currently running under IIS 5.2 and Windows Server 2003. Our network group will be possibly moving us to IE 11, while testing we noticed some forms are broken. Using IE 11 developers tool, the forms can be corrected if we change the user agent string to IE 9.
Is there anyway to do change the user agent to IE9 without changing the aspx.vb code?
We are looking into the possibility to upgrading to .net 4.5 to see if that resolves the problem. http://blogs.telerik.com/aspnet-ajax/posts/13-12-19/how-to-get-your-asp.net-application-working-in-ie11
<configuration> <system.web>
<clientTarget>
<add alias="ie9" userAgent="Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0)" />
</clientTarget> </system.web> </configuration>