hey, it seems doesn't support Chinese, I tried seaching both English and Chinese Name from MSSQL 2008 DB. Only English name could be listed in dropdownlist. Is that possible to fix it? thanks
<code>
<telerik:RadAutoCompleteBox runat="server" ID="RadAutoCompleteBox1" Width="155" DataSourceID="SqlDataSource1"
AllowCustomEntry="false" DataTextField="txtName" datatextvalue="txtMobileOne" DropDownHeight="100" DropDownWidth="275">
<DropDownItemTemplate>
<table cellpadding="0" cellspacing="0">
<tr>
<td align="left" style="width: 25%; padding-left: 10px;">
<%# DataBinder.Eval(Container.DataItem, "txtName")%>
</td>
<td align="left" style="width: 25%; padding-left: 10px;">
<%# DataBinder.Eval(Container.DataItem, "txtMobileOne")%>
</td>
<td align="left" style="width: 25%; padding-left: 10px;">
<%# DataBinder.Eval(Container.DataItem, "txtMobileTwo")%>
</td>
</tr>
</table>
</DropDownItemTemplate>
</telerik:RadAutoCompleteBox>
<asp:SqlDataSource ID="SqlDataSource1" runat="server" ConnectionString="<%$ ConnectionStrings:sqlConn %>"
ProviderName="System.Data.SqlClient" SelectCommand="SELECT [txtMobileOne], [txtMobileTwo], [txtName] FROM UserProfile">
</asp:SqlDataSource>
</code>
<code>
<telerik:RadAutoCompleteBox runat="server" ID="RadAutoCompleteBox1" Width="155" DataSourceID="SqlDataSource1"
AllowCustomEntry="false" DataTextField="txtName" datatextvalue="txtMobileOne" DropDownHeight="100" DropDownWidth="275">
<DropDownItemTemplate>
<table cellpadding="0" cellspacing="0">
<tr>
<td align="left" style="width: 25%; padding-left: 10px;">
<%# DataBinder.Eval(Container.DataItem, "txtName")%>
</td>
<td align="left" style="width: 25%; padding-left: 10px;">
<%# DataBinder.Eval(Container.DataItem, "txtMobileOne")%>
</td>
<td align="left" style="width: 25%; padding-left: 10px;">
<%# DataBinder.Eval(Container.DataItem, "txtMobileTwo")%>
</td>
</tr>
</table>
</DropDownItemTemplate>
</telerik:RadAutoCompleteBox>
<asp:SqlDataSource ID="SqlDataSource1" runat="server" ConnectionString="<%$ ConnectionStrings:sqlConn %>"
ProviderName="System.Data.SqlClient" SelectCommand="SELECT [txtMobileOne], [txtMobileTwo], [txtName] FROM UserProfile">
</asp:SqlDataSource>
</code>