Hi

I am using dropdownlist in our application.I am using below code

<asp:DropDownList ID="drpVariableKeys" runat="server" DataTextField="sap_column_desc"

DataValueField="sap_column" OnSelectedIndexChanged="drpVariableKeys_SelectedIndexChanged"

AutoPostBack="True" Width="200px" >

</asp:DropDownList>

<cc2:ListSearchExtender ID="lseVariableKeys" runat="server" TargetControlID="drpVariableKeys"

PromptText="Type to search" PromptCssClass="listExtenderPrompt" />

in QA environmentif i type "Sol" it displays the first best matching result "Distibutor sold-to"


If i type "Distr" it takes me to "Distibutor sold-to"

But in Prod environment if i type "sol" it takes me to "Sold to".In production also it should displays the first best matching result.

Why it is inconsistancy between the two environments ?
please help me out

Thanks in Advance.