I made a Editable Combo box using the following code
<asp:TextBox ID="textbox" runat="server" Width="75px" Style="position: absolute;" />
<asp:DropDownList ID="ddl" runat="server" Width="95px" AppendDataBoundItems="true">
<asp:ListItem Text="" />
</asp:DropDownList>
And I create a javascript for onChange of the dropdown and show the selected text in textbox. My issue is when I running on IE6 the textbox is not showing and i read from Google that it is an issue with IE6. Is there any method to work the position: absolute;?
I have also a gridview which is inside a and I set the overflow: auto; of to show the scrollbars. Its is also not working in IE6?
Please give me some solutions to overcome these?