I need to concatenate an HTML tag like <br/> and to the Text property of an ASP.Net TextBox.
I tried this:
txtMessage.Text + "<br/>" + strgetlist;
But it is displaying the following:
TaskName
<br/>Project1,project2..
How cam I add a break/space between these two strings?
Here I am assuming that the output is to be shown in a TextBox. First make the TextBox
TEXTMODEas multiline. Then on the TextBox where you have to show the output (say txtOutput), you write: