﻿function CommentClientValidate(source, arguments)
 {
   if (arguments.Value.length<1000)
   {
    arguments.IsValid=true;
   }
   else
   {
     arguments.IsValid=false;
   }
 }
 
