Posted on: 3/7/2015 10:19:57 PM | Views : 609

Imagine you have a product line consisting of between 100 to 500 items.  Each product has a description consisting of 1 to 10 words.
While you have a menu to allow users to pick products, you also want to give them the ability to type letters that will display the appropriate products in a list.  Example: "c" would display all items starting with that letter, "ch" would only display those items starting with those 2 letters, etc.
You have the advantage in your ASP.NET Web Forms app of being able to prepare a data structure that will act as a lookup index, of sorts.  But ultimately, whatever you create will be utilized by jQuery/Javascript on the client side.  A server-side callback is not permitted at this time.
Given that there will be, on average, between 500 - 5000 possible words, you need an effective indexing scheme so that the type-ahead functionality works in real time with no delay.
Any advice on w ...

Go to the complete details ...