0
私はASP.NETページでJQuery AutoCompleteを使用しています。そして、私はashxファイルを使用してリストを作成しています。JQueryオートコンプリートがashxと連携していません
しかし、ashxは発射していないようです。私は何が間違っているのか分かりません。
jQueryのコード
$(function() {
$("#<%=txtBox.ClientID%>").autocomplete('MyList.ashx', { minChars: 1 });
});
.ashxコード
[WebService(Namespace = "http://www.yoursite.com/")]
[WebServiceBinding(ConformsTo = WsiProfiles.BasicProfile1_1)]
public class MyList: IHttpHandler
{
public void ProcessRequest(HttpContext context) {
//Just to test
context.Response.Write("test");
}
}