[ASP.Net] TextArea 限制使用者可輸入的字數

在ASP.Net中 <asp:TextBox 中只要將 TextMode 設定為 TextMode="MultiLine"
輸出到瀏覽器都會轉換為 Html  TextArea 標籤,
而瀏覽器中的 TextArea 並不支援 MaxLength 的屬性,
於是我們如果要限制輸入的字串長度,於是使用 Javascript 來解決。

例如:
<asp:TextBox ID="TBoxRemark" runat="server" TextMode="MultiLine" CssClass="FMstColEdit" Width="640px" Height="60px" OnKeyUp="javascript:Text_Count(this,100);"

onChange="javascript:Text_Count(this,100);"></asp:TextBox>

留言