Restrict user from entering unlimited characters in a multiline textbox

First of all add following code inside <head> tag ::

<script type="text/javascript" src="//code.jquery.com/jquery-1.10.2.js"></script>
<script type="text/javascript">
    $(function () {
        $('#txtdesc').keypress(function (e) {
            var txt = $(this).val();
            if (txt.length > 90) {
                e.preventDefault();
            }
        });
    });
</script>

Now add code in <body> tag ::

 <div>
       Enter Address(Should be Less than 90 Chars) <asp:TextBox ID="txtdesc" runat="server" TextMode="MultiLine"></asp:TextBox>
    </div>

Comments

Post a Comment

Popular posts from this blog

Search data in Gridview on Textbox Key press event using JQuery in Asp.Net- C#

StateCode and StatusCode Values for mostly used entities in Microsoft Dynamics CRM 2013

Dumps for Microsoft Dynamics CRM MB2-703 Practice Exam Questions Free

How to import CSV files into DataTable in C#

How to show enlarge image when mouse hover on image or link in Asp.Net(c#) using JavaScript

go to top image