本文介绍了自动填充没有webservice的文本框的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
嘿伙计们,
我目前正在实现自动完成功能,而不使用网络服务,并将我的ServiceMethod属性作为GetProviders放在自动完成扩展程序中。
以下是xxx.aspx.cs中GetProviders方法的样子:
public static string [] GetProviders( string prefixText, int count)
{
ArrayList fd = new ArrayList();
fd.Add(DBManager.GetAllFood());
return fd;
}
我知道如何改进它?
提前谢谢
解决方案
Hey guys,
I am currently implementing an autocomplete feature without using a webservice, and have put my ServiceMethod attribute in the autocomplete extender as GetProviders.
Here's how the GetProviders method looks like in the xxx.aspx.cs:
public static string[] GetProviders(string prefixText, int count) { ArrayList fd = new ArrayList(); fd.Add(DBManager.GetAllFood()); return fd; }
Any idea how I can improve it??
Thanks in advance
解决方案
这篇关于自动填充没有webservice的文本框的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!