I have tried both Ajax and Jquery with no luck. The closest I came to it, was with Ajax if I typed the name in the textbox then hit the IE back arrow and then the IE forward arrow, it would populate my results... but this only worked once.
You know how when you are using email clients, you type a persons name and its searches your contacts and provides you with an autocomplete? When you select one of the autocomplete, it adds it to the "To:" string and puts a comma so when you start typing again, it repeats the process allowing you to add multiple emails. I am trying to accomplish this using ASP.NET. I have a windows service that returns type string[] based on the user's search parameter (Only Last Name). It returns a list of strings in this format: "FirstName LastName" <Email@Address.com>. I guess one of the problems is the autocomplete is populating a dynamic list, but not associating with the items in the list leading with first name. Can anyone point me in a direction that can accomplish this? Again, I am populating the list using last name as a search parameter, because I am searching Active Directory for the email in a considerably large corporation.