Has anyone used jQuery to populate an autocomplete list on a textbox using ASP.NET webforms? If so, can anyone recommend a good method? From my reading so far, it seems like most people are using delimited lists rather than JSON to bring the items back. I'm open to any ideas that will get me up and running rather quickly.
|
|
There are many, many examples on the web. I've used this one before, and if I recall you only need to create an aspx that will return matching terms as a http://www.dyve.net/jquery/?autocomplete The documentation shows php in the example, but there's no difference in the way the plugin itself works and I didn't have to do anything special as a result. From the documentation:
|
||
|
|
|
I made a tutorial to do this with asp.net mvc but it should be almost identical for traditional webforms: http://blogs.msdn.com/joecar/archive/2009/01/08/autocomplete-with-asp-net-mvc-and-jquery.aspx |
||
|
|
