Click here to Skip to main content
15,886,873 members
Please Sign up or sign in to vote.
4.00/5 (1 vote)
See more:
Why dropdown and multiselectdropdown is not rendering properly in IE 11?

I am working in Asp.net with C#3.5.I have issue with multiselectdropdown whose border is rendering with black color and dropdown list whose arrow is going away on selecting the options from the same in IE 11. But in IE 8 all works fine.
SQL
Below are the styles used for dropdownlist and multiselect dropdown


HTML
.C3_DROPDWNLIST
{
    FONT-WEIGHT: normal;
    FONT-SIZE: 8pt;
    COLOR: black;
    FONT-FAMILY: Verdana,Tahoma, 'MS Sans Serif';
    HEIGHT:20px;
    WIDTH:180px;
    border-width:1px;border-style:solid;
}

ASP.NET
<uc1:multiselectdropdown ID="mddlNONMOLStatus" runat="server" ListWidth="350" CssClass="C3_DROPDWNLIST" Style="position: static"
                                                    AutoPostBack="false"></uc1:multiselectdropdown>

<asp:DropDownList ID="drdCorporateId" runat="server" CssClass="C3_DROPDWNLIST" Style="position: static"
                                                                Width="220px">
                                                            </asp:DropDownList

>
Posted
Updated 24-Nov-15 21:05pm
v2
Comments
jgakenhe 26-Nov-15 22:25pm    
Take the style off; if it works, then it is the CSS; otherwise, it is your user control. Make sure to call your user control at the top of the web form.

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