Mega Code Archive

 
Categories / ASP.Net / Asp Control
 

Multiline TextBox (C#)

<%@ Page Language="c#" %> <script runat="server">     void Page_Load()     {       if (Page.IsPostBack)       {           lblName.Text = "";           lblAddress.Text = "";           lblPassword.Text = "";       }            if (txtName.Text !="")         lblName.Text = "You have entered the following name: " +  txtName.Text;                 if (txtAddress.Text !="")         lblAddress.Text = "You have entered the following address: " + txtAddress.Text;                 if (txtPassword.Text !="")         lblPassword.Text = "You have entered the following password: " + txtPassword.Text;               } </script> <html> <head>     <title>Text Box Example</title> </head> <body>     <asp:Label id="lblName" runat="server"></asp:Label>     <br />     <asp:Label id="lblAddress" runat="server"></asp:Label>     <br />     <asp:Label id="lblPassword" runat="server"></asp:Label>     <br />     <form runat="server">         Please enter your name:          <asp:textbox id="txtName" runat="server"></asp:textbox>         <br />         <br />         Please enter your address:          <asp:textbox id="txtAddress" runat="server" textmode="multiline" rows="5"></asp:textbox>         <br />         <br />         Please enter your password:          <asp:textbox id="txtPassword" runat="server" textmode="password"></asp:textbox>         <br />         <br />         <input type="submit" value="Submit Query" />     </form> </body> </html>