ASP.NET Operators

The process of merging strings to form one text sentence.
————————————– SAMPLE CODE ——————————————-
Dim Message As String = "First Line of text <br>"
'Append lines to first line
Message = Message & "Second Line of text<br>"
Message = Message & "Third Line of text"
Response.Write(Message)
Response.Write("<br>")
'Join left and right text to a variable to form one sentence
Dim Comment As String = "My cat is <b>" & MyCat & "</b> and he is very young"
Response.Write(Comment)
————————————– OUTPUT ————————————————
First Line of text
Second Line of text
Third Line of text