Set asp:TextBox TextMode to MultiLine, Rows to 5 (VB.net) : Multi Line TextBox « Asp Control « ASP.Net






Set asp:TextBox TextMode to MultiLine, Rows to 5 (VB.net)

<%@ Page Language="VB" %>
<html>
<head>
<title>Setting Properties and Formatting</title>
</head>
<body bgcolor="#ffffc0">
    <form runat="server">
        <p>
            <asp:Label id="Label1" runat="server">Address:</asp:Label>
            &nbsp;<asp:TextBox id="TextBox1" runat="server" TextMode="MultiLine" Rows="5"></asp:TextBox>
        </p>
    </form>
</body>
</html>

           
       








Related examples in the same category

1.Set asp:textbox rows count and textmode (VB.net)
2.Multiline TextBox (C#)