<html> <body> <form runat="server"> 基本的 TextBox: <asp:TextBox id="tb1" runat="server" /> <br /><br /> 密码 TextBox: <asp:TextBox id="tb2" TextMode="password" runat="server" /> <br /><br /> TextBox: <asp:TextBox id="tb3" Text="Hello World!" runat="server" /> <br /><br /> 多行 TextBox: <asp:TextBox id="tb4" TextMode="multiline" runat="server" /> <br /><br /> 的 TextBox: <asp:TextBox id="tb5" rows="5" TextMode="multiline" runat="server" /> <br /><br /> 的 TextBox: <asp:TextBox id="tb6" columns="30" runat="server" /> </form> </body> </html>