【ASP.NET】MultiLineなTextBoxのMaxLength対応
結論<%-- OnFocusイベントで関数を呼び出す --%><asp:TextBox ID="TextBox1" textmode="MultiLine" runat="server" OnFocus="setMaxLength(this,100)"/><%-- maxLengthプロパティを設定 --%><script> function setMaxLength(text, max) { text.maxLength = max; }</scr