I would like to add the delimiter after the selection after it is selected.
Say, if I select "beautiful", then it will add "beautiful; " into the textbox.
I would like to add the delimiter after the selection after it is selected.
Say, if I select "beautiful", then it will add "beautiful; " into the textbox.
I have got an answer from the ASP.NET forum:
you can fire the Text change event of the Textbox where you can add the Delimiter to the Textbox. like this and in code file txtAutoComplete.Text = txtAutoComplete.Text + ";";