ASP+ Textbox and Label controls

Jedimmoms

New Member
I can't set the text propery of ASP+ textbox and label controls to:<BR><BR>"Line1" & vbnewline & "Line2"<BR><BR>How can this be done with VB.net and ASP+?Try this for the textbox (I assume you want a textarea, a multiple lined textbox):<BR><asp:textbox id="txtFoo" runat="server" TextMode="MultiLine"><BR> Hello<BR> World<BR></asp:textbox><BR><BR>For the label if you want just the vbCrLf in there use:<BR><asp:label id="lblFoo" runat="server"><BR> Hello<BR> World<BR></asp:label><BR>
 
Top