Tuesday, October 2, 2012

Maxlength of Multilne Textbox in ASP.Net


<script language="javascript" type="text/javascript">
function textboxMultilineMaxNumber(txt, maxLen)
{
    try {
        if ((txt.value.length) > (maxLen-1 ))
        return false;
        }
 catch (e)
    {
    }
}
    </script>




<asp:TextBox ID="TextBox1" runat="server" Width="200px" TextMode="MultiLine" Height="100px"  onkeypress="return textboxMultilineMaxNumber(this,5)"></asp:TextBox>

No comments:

Post a Comment

Ajax CalendarExtender displaying at wrong position in Chrome

< script type ="text/javascript" language ="javascript">     function onCalendarShown(sender, args)...