|
dev
newsgroups
|
|||||||||||||||||||||||
|
|||||||||||||||||||||||
Intellisense in ASP.NET textboxHi,
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! Here is one with a VS2005 solution
http://blog.ourcurrentfuture.com/ HTH Ciaran O'Donnell Show quote "Samuel" wrote: > 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. -- Show quote--------------------------- Thanks, Ibrahim Software Consultant - Web Development, GB "Samuel" wrote: > 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! > > > |
|||||||||||||||||||||||