.netで、指定された入力テキストに基づいて都市名を取得するWebサービスを作成しました。Webサービスは正常に機能しています。私はそのWebサービスをajaxコントロールツールキットのAutoCompleteExtenderコントロールで使用しました。しかし、テキストボックスに何かを入力すると、提案のリストが表示されません。
Webサービスの構造は次のとおり
です。publicstringGetCompletionList(string prefixText)
<body>
<form id="form1" runat="server">
<div>
<!--.........................................
.........................................
.........................................-->
<asp:TextBox ID="txtsearchcity" runat="server" class="autosuggest"></asp:TextBox>
<asp:AutoCompleteExtender runat="server"
ID="autoComplete1"
TargetControlID="txtsearchcity"
ServicePath="http://localhost:3935/SearchCity/searchcity.asmx"
ServiceMethod="GetCompletionList"
MinimumPrefixLength="2"
CompletionInterval="1000"
EnableCaching="true"
CompletionSetCount="20">
</asp:AutoCompleteExtender>
<!--.........................................
.........................................
.........................................-->
</div>
</form>
</body>
正確なServicePathとServiceMethodは何である必要がありますか?出力を取得するためにcssファイルが必要かどうか。