asp.net: Textbox with google like dropdown list..

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • PRR
    Recognized Expert Contributor
    • Dec 2007
    • 750

    asp.net: Textbox with google like dropdown list..

    I have a textbox... i want to display a list of "choices" like in google or yahoo, as the user types in some keys.... Very crudely i got it workin by havin a list<string> storing all values, then using regular expression to match it with input... THe drawback here is i use : textbox :TextChanged(ob ject sender, EventArgs e) event ... which fires on sever postback,... i want it to be dynamic...
    Thanks in advance
  • nateraaaa
    Recognized Expert Contributor
    • May 2007
    • 664

    #2
    Have you considered using the AJAX AutoComplete Extender control? The following link is to a tutorial showing you how to use this control. http://www.asp.net/learn/ajax-videos/video-122.aspx

    Nathan

    Comment

    • ShahbazAshraf
      New Member
      • Mar 2008
      • 36

      #3
      Can also used this control

      Comment

      Working...