I have a jquery-ui autocomplete textbox working fine on my asp.net webforms site.
The problem with it running this way, is that asp.net is generating a huge array which has to be loaded before the page can be displayed.
My solution is to provide the data in a webservice, and point my autocomplete box to the url of the webservice, so that I can look up my entries on-the-fly, AFTER the page is loaded.
I know this will work, but I'm not really familiar with all that asp.net offers, and so my question is more one of "what is the best way to go about this?"
Since the data belongs to the application itself, and since I don't need to access the data from any outside the application, I'm wondering if making a webservice is the correct way to do this? For instance, does asp.net have something like a webservice that is only accessible within the same application?