Struts 1.2 application is not working in IE 11 without the compatibility view unchecked.
With the compatibility view enabled, the application seems to be working fine. The goal is to make the application work without the compatibility settings.
I tried the below options of using meta tags in <head>
of our application, but it doesn't seem to do the trick.
Option 1:
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
I tried deploying code using the above tag in head tag in core JSP pages(when the application get started,first theses pages will load),which our application should load after refresh but didn’t in native mode.
(main.jsp,home.jsp,blank.jsp,tableData.jsp)
Option 2:
<meta http-equiv="X-UA-Compatible" content="IE=8" />
Option3 :
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
.Tried using this tag and few jars but still the same.
Any sort of suggestions would be much appreciated, otherwise I would need to migrate 120 thousand source lines of codes to Struts 2.X.