本文介绍了如何在更新面板中添加Ajax AutoCompleteExtender的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧! 问题描述 我在更新面板中使用Ajax AutoCompleteExtender。但它显示我的错误。请给我解决方案。 Upadte面板我用于不刷新页面。 < asp:TextBox ID = txtCommunicationCity runat = server > < / asp:TextBox > < ajax:AutoCompleteExtender ID = 自动完成Extender1 runat = server TargetControlID = txtCommunicationCity MinimumPrefixLength = 1 EnableCaching = true CompletionInterval = 100 ServiceMethod = GetSuggessions CompletionSetCount = 20 ContextKey = strOtherPram > < / ajax :AutoCompleteExtender > 解决方案 基于你的内容问道,没有多少人可以帮忙。 虽然,以下内容可以让你明白: 使用AJAX AutoCompleteExtender进行自动提示 [ ^ ] 使用AutoComplete Extender自动执行PostBack [ ^ ] 自动完成演示 [ ^ ] I am using Ajax AutoCompleteExtender in update panel.But it showing me error. please provide me solution. Upadte panel i am using for not refresh page. <asp:TextBox ID="txtCommunicationCity" runat="server"> </asp:TextBox> <ajax:AutoCompleteExtender ID="AutoCompleteExtender1" runat="server" TargetControlID="txtCommunicationCity" MinimumPrefixLength="1" EnableCaching="true" CompletionInterval="100" ServiceMethod="GetSuggessions" CompletionSetCount="20" ContextKey="strOtherPram"> </ajax:AutoCompleteExtender> 解决方案 Based on what you asked, there is not much anyone can help specifically. Though, following should get you an idea: Using AJAX AutoCompleteExtender for autosuggest[^]Using the AutoComplete Extender to Automatically Perform a PostBack[^]AutoComplete Demonstration[^] 这篇关于如何在更新面板中添加Ajax AutoCompleteExtender的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!
09-17 13:24