Intellisense in ASP.NET textbox

  • Thread starter Thread starter Samuel
  • Start date Start date
S

Samuel

Hi,

Do you know how to implement intellisense behaviour in ASP.NET textbox.
Like in destination textbox at http://www.booking.com/ site?
It shows cities from all over the world and it works extremely fast.
I think it's some sort of partial callback?
When I save page i have list only of cities that match first letters. So
there is no big XML file.
Looking in cache i saw that each string i've entered it shows links
example http://www.booking.com/lookup.html?str=new (for new york)

Do you know if somebody sells component like this or have any other idea how
to do it?

Thanks a lot!
 
It is a callback. Probably using ajax. U can do this with ajax callback and a
bit of javascript. I think the latest atlas callback by microsoft also
provides such a control.
--
 
Back
Top