Click here to Skip to main content
15,887,404 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Is there any way to get old UI dropdown menu for asp:dropdown in IE-11
i want it to work it in same way like in previous IE versions so that all menu item display downwards from the dropdown menu and the droopdown box is visible.

if it is not possible please share a link from MSDN.. if possible

Thanks
Posted
Updated 3-Mar-14 21:40pm
v3

1 solution

To preserve the same rendering like in IE10 and if not possible like in IE9, you should use the next setting in your master page (or pages) in the "head" section like in the next example:
HTML
<meta http-equiv="X-UA-Compatible" content="IE=10; IE=9;"/>
 
Share this answer
 
v2
Comments
Shubham Chakraborty 4-Mar-14 4:12am    
Its not working.
Is there any link fro msdn which mentions change in dropdown UI for IE11 ?
Raul Iloc 4-Mar-14 4:15am    
After this change (indicated by me) you must clear the browser cache, close the browser, then test again your page, and should work like in IE10!
Shubham Chakraborty 4-Mar-14 4:33am    
Followed it.. But Not working !!!
Raul Iloc 4-Mar-14 4:45am    
Are you shore that in IE10 is working? Maybe you tested in IE9.
Anyway you could try to modify the setting above to be only IE9 compatible:
content="IE=9;", then delete the browser cache and test again.
Shubham Chakraborty 4-Mar-14 4:51am    
i tried as u mentioned above.. but the the dropdown menu is not working like ie 10.. it still shows the new drop down UI in IE-11

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900