Re: ASP.net Validators

  •  05-18-2009, 2:38 AM

    Re: ASP.net Validators

    Hi,
     
    It could be done by script:
     
     
     
    1. <p>  
    2.     Click the following button to upload. Email :   
    3.     <input id="emailbox" type="text" />  
    4. </p>  
    5.     <script>  
    6. function CuteWebUI_AjaxUploader_OnBrowse()   
    7. {   
    8.     var emailbox=document.getElementById("emailbox");   
    9.     if(emailbox.value.length==0)   
    10.     {   
    11.         alert("please input your mail");   
    12.         emailbox.focus();   
    13.         return false;   
    14.     }   
    15. }   
    16. </script>  
    Regards,
    Terry
View Complete Thread