I am using JQuery on my ASP.net page and I want to know if there is a way I could use AutoComplete with SQL. To be exact, I am doing “select” on the database, and I will have an array of string and I want to use the array with the AutoComplete to populate strings as user types.
Thanks.
I am using JQuery on my ASP.net page and I want to know if
Share
One of the easiest ways to get jQuery Autocomplete functionality is to use the jQuery UI control. It uses jQuery’s Ajax functionality to call to a server-side function that returns an array of values.
The code to make a call to a datasource (such as SQL Server or MySQL) looks like this (from the jQueryUI documentation):