Autocomplete with DataTable を使用したサンプルを探しています。オートコンプリートには、単一の列とは別にテーブル構造が必要です。
何かヒント..?ありがとう!あらかじめ
マークアップは以下の通り
<asp:TextBox ID="txtAutoCmplte" runat="server"></asp:TextBox>
<asp:AutoCompleteExtender ID="txtAutoCmplte_AutoCompleteExtender"
runat="server" CompletionInterval="1" ServiceMethod="GetNames"
TargetControlID="txtAutoCmplte"
CompletionListCssClass="autocomplete_completionListElement"
MinimumPrefixLength="1" BehaviorID="AutoCompleteEx"
onclientpopulated="onListPopulated">
</asp:AutoCompleteExtender>
<asp:ScriptManager ID="ScriptManager1" runat="server">
</asp:ScriptManager>