Hi,
I am using 5 ComboBox controls in a single web page.
But among them only first ComboBox is dispalying properly other 4 ComboBox are just displayed as a text box with no drop down arrow button.
Please suggest some solution.
Below is my aspx markup :
<tr>
<td>
<div>
l. First List </div>
</td>
<td>
<asp:ComboBox ID="DropDown1" DataTextField="Description" ClientIDMode="Static" RenderMode="Block"
AutoPostBack="false" DropDownStyle="DropDown" AutoCompleteMode="Suggest" CaseSensitive="false"
runat="server">
</asp:ComboBox>
</td>
<td>
</td>
</tr>
<tr>
<td>
<div>
2. Second ListList </div>
</td>
<td>
<asp:ComboBox ID="DropDown2" DataTextField="Description" ClientIDMode="Static" RenderMode="Block"
AutoPostBack="false" DropDownStyle="Simple" AutoCompleteMode="Suggest" CaseSensitive="false"
runat="server">
</asp:ComboBox>
</td>
<td>
</td>
</tr>
<tr>
<td>
<div> 3 . List 2</div>
</td>
<td>
<asp:ComboBox ID="DropDown3" DataTextField="Description" ClientIDMode="Static" RenderMode="Block"
AutoPostBack="false" DropDownStyle="DropDown" AutoCompleteMode="Suggest" CaseSensitive="false"
runat="server">
</asp:ComboBox>
</td>
<td>
</td>
</tr>