Multiline textarea in vb.net

I need a multi-line text area using VB.net. I used to use the text area in html, but I never used it 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 the file.

+4
source share
1 answer

Use ASP.Net TextBox with TextMode = MultiLine .

TextBox.TextMode Property

+6
source

Source: https://habr.com/ru/post/1340082/


All Articles