Skip to content

Commit 4d35153

Browse files
authored
Update README.md
1 parent 8344db1 commit 4d35153

File tree

1 file changed

+16
-1
lines changed

1 file changed

+16
-1
lines changed

README.md

Lines changed: 16 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,17 @@
1-
# jquery-autocomplete-by-example
1+
# jQuery Autocomplete by example
2+
3+
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+
25
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.
12+
13+
After implementation your page will be like
14+
15+
![jQuery UI Autocomplete](http://dotnetmentors.com/Images/jquery%20autocomplete%20in%20asp.net.png)
16+
17+
For more details visit - https://geeksarray.com/blog/jquery-autocomplete-by-example

0 commit comments

Comments
 (0)