Tuesday, August 26, 2008

Restricting max lenth of message box - java script

function MaxLengthRestrictTextBox(s,e)
{

if(e.Value.length > 6000 )
{
e.IsValid = false;
return false;
}

e.IsValid = true;
}

No comments: