asp.net中c# TextBox.MaxLength例子

來源:互聯網
上載者:User

TextBox.MaxLength 屬性
擷取或設定文字框中最多允許的字元數
文字框中最多允許的字元數。預設值為 0,表示未設定該屬性。
使用 MaxLength 屬性限定可以在 TextBox 控制項中輸入的字元數。

注意 :僅當 TextMode 屬性設定為 TextBoxMode.SingleLine 或 TextBoxMode.Password 時,此屬性才適用。

關於TextBox的MaxLength無效問題 


方法一: 驗證控制項(經實踐可行)
驗證控制項

 代碼如下 複製代碼
<asp:TextBox ID="txtConclusion" MaxLength="200" TextMode="MultiLine" Height="100px" Width="400px" runat="server" />
<asp:RegularExpressionValidator ID="txtConclusionValidator1" ControlToValidate="txtConclusion" Text="超過200字" ValidationExpression="^[sS]{0,200}$" runat="server" />

方法二:添加一些用戶端限制的JS代碼。樣本如下:
代碼

 代碼如下 複製代碼
<HTML>
    <HEAD>
        <title>WebForm6</title>
        <meta name="GENERATOR" Content="Microsoft Visual Studio .NET 7.1">
        <meta name="CODE_LANGUAGE" Content="C#">
        <meta name="vs_defaultClientScript" content="JavaScript">
        <meta name="vs_targetSchema" content="http://schemas.microsoft.com/intellisense/ie5">
        <script language="javascript">           
            function isOver(sText,len)
            {
                var intlen=sText.value.length;
                if (intlen>len)
                {
                    alert("The content length must Less than or Equal "+len);
                    sText.focus();
                    sText.select();
                }
            }
        </script>
    </HEAD>
    <body MS_POSITIONING="GridLayout">
        <form id="Form1" method="post" runat="server">
            <asp:TextBox id="txtName" style="Z-INDEX: 102; LEFT: 200px; POSITION: absolute; TOP: 104px" runat="server"
                TextMode="MultiLine" Height="112px" Width="271px"></asp:TextBox>
        </form>
    </body>
</HTML>
Public void Page_Load(object sender, System.EventArgs e)
{
     this.txtName.Attributes.Add("onblur","isOver(this,1000);");
}
相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.