Learning Resources
Â
Capturing text with MultiLine mode
The TextBox server control is an input control that lets the user enter text. By default, the TextMode property is set to SingleLine, which creates a text box with only one line. You can also set the property to MultiLine or Password. MultiLine creates a text box with more than one line. Password creates a single-line text box that masks the value entered by the user.
The display width of the text box is determined by its Columns property. If the text box is a multiline text box, the display height is determined by the Rows property.
An example of multiline textbox is given as -
<%@ Page Language="c#" %>
<html>
   Â
<body>
   Â
   Â
   Â
   Â
   Â
   Â
    <form runat="server">
        Please enter your name:Â
       Â
       Â
       Â
        Please enter your address:Â
       Â
       Â
       Â
        Please enter your password:Â
       Â
       Â
       Â
        "submit" value="Submit Query" />
    form>
body>
html>
<%@ Page Language="c#" %>
<html>
   Â
<body>
   Â
   Â
   Â
   Â
   Â
   Â
    <form runat="server">
        Please enter your name:Â
       Â
       Â
       Â
        Please enter your address:Â
       Â
       Â
       Â
        Please enter your password:Â
       Â
       Â
       Â
        "submit" value="Submit Query" />
    form>
body>
html>
Â