Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

multiline textarea in vb.net

I want a multiline text area using VB.net. I have used a text area in html before, but I have never used one in VB.net.

I tried:

<textarea id="TA" cols="100" rows="20"></textarea>  

But I cannot change the value of textarea using my code behind file.

like image 715
krum_cho Avatar asked Jan 20 '23 11:01

krum_cho


1 Answers

Use a ASP.Net TextBox with TextMode = MultiLine.

TextBox.TextMode Property

like image 84
Tim Schmelter Avatar answered Jan 31 '23 06:01

Tim Schmelter