Click here to Skip to main content
15,888,610 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
i create a control like AutoCompleteExtender textbox and one button.
while i click on textbox the autocompletelist will be display.. it will work fine in IE 8 or below.. but while i run it on IE 9 or above it will be display below from control. approx 15px below from textbox.My control code like below:
C#
<asp:TextBox runat="server" ID="txt"></asp:TextBox>
<asp:AutoCompleteExtender ID="AutoCompleteExtender1" runat="server" TargetControlID="txt"
    MinimumPrefixLength="0" EnableCaching="true" CompletionInterval="100" ServiceMethod="GetAutoData"
    UseContextKey="true" CompletionSetCount="10" ShowOnlyCurrentWordInCompletionListItem="true"
    FirstRowSelected="true" ServicePath="../WebService.asmx" ContextKey="test">
</asp:AutoCompleteExtender>
Posted
Comments
See in Developer Tool. Might be the case that some CSS is overlapping the styles.

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

  Print Answers RSS
Top Experts
Last 24hrsThis month


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