On continues refresh(F5) the page ui get disturbed for IE 10 and 11.
Note: for single refresh there is no issue ui issue.
i have tried all the below option for compatibility but no success:-
1. using metatag (we already implemented)
<meta content="IE=EmulateIE7" http-equiv="X-UA-Compatible" />
2. In web.config (we already implemented)
<httpProtocol>
<customHeaders>
<clear/>
<add name="X-UA-Compatible" value="IE=EmulateIE7"/>
</customHeaders>
</httpProtocol>
3. Code behind on Master page
protected void Page_Init(object sender, EventArgs e)
{
Page.Header.Controls.AddAt( ...
Go to the complete details ...