Looking for guidance on how to achieve something in ASP.NET Web Form - the behaviour is a bit like that seen in ASP.NET AutocompleteExtender, but I can't find anything that gives the flexibility I need. Here is what I am trying to do:
- 2 TextBox fields on the form, CompanyName and CompanyRef (CompanyRef an abbreviated unique Company identifier)
- User types in the CompanyName
- As soon as there are 3 characters in the CompanyName an internal webservice is called (AJAX?)
- Webservice checks what has been entered so far and evaluates a 3 character representation of it - for instance "Stack" would be returned as STA0001.
- If there is already an STA0001 in the db it would return STA0002 and so on
- The value returned would be targetted at the CompanyRef TextBox
- User needs to be able to edit the CompanyRef if they so wish
I'm not looking for code per se, more high level guidance on how this can be done, or if there are any components available that I am missing that you may be able to point me in the direction of. Googling and searching on SO has returned nothing - not sure if I'm looking for the right thing though.