I am trying to populate a multiline textbox with names that are selected. When I use the code below it just adds the record on the same line after the first one. Is it possible to after the first line is added to have the next item added appear on a new line?
Protected Sub Add_Click(sender As Object, e As EventArgs) Handles Button1.Click
TextBox1.Text.Replace(Environment.NewLine, "<br />")
TextBox1.Text += NameTextBox.Text
End Sub