You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This article helps you to create AutoComplete textbox using jQuery library. This will also give you details about jQuery AutoComplete UI, CSS and select event.
4
+
2
5
In this example you will create a ASP.NET Web Form application which will connect to Northwind database. If you do not have Northwind database you can download from here. The AutoComplete TextBox's change event will call PageMethod written in WebForm code behind file. This method will get country names from Customer table and return as suggestion for AutoComplete TextBox.
6
+
7
+
## Files
8
+
9
+
1.[Default.aspx](https://github.com/geeksarray/jquery-autocomplete-by-example/blob/master/jQueryAutocomplete/jQueryAutocomplete/Default.aspx) - includes Customer HTML table to update its content on after changing conent in Country text box.
10
+
1.[Default.aspx.cs](https://github.com/geeksarray/jquery-autocomplete-by-example/blob/master/jQueryAutocomplete/jQueryAutocomplete/Default.aspx.cs) - code behind file for default.aspx having web methods.
11
+
1.[Customer Entity](https://github.com/geeksarray/jquery-autocomplete-by-example/blob/master/jQueryAutocomplete/jQueryAutocomplete/Default.aspx.cs) - customer model used for creating list of customers.
0 commit comments