I am using VB.NET and I have a Textbox which is paired with "autocompleteextender" to allow user to search for an address (e.g. street/road) from the database. It all works fine, however I want to presenter the user with a feature
so that once one street/road has been searched/selected then another textbox should be displayed beneath the first one so the user can search the second street/road and continue this until the user have have selected as many streets/reads (or a maximum of
20). Then click SAVE button where the code will loop round for each of the textboxes (maximum 20) and insert the value from each to the database.
Because the "autocompleteextender" is paired with one textbox, it is therefore difficult and inefficient to create something like 20 textboxes and 20 ServiceMethods. Therefore, I was thinking perhaps use the top textbox for only searching (as this
paired with autocomplet ...
Go to the complete details ...