Re: How to change message text about hitting file size limit for IIS7

  •  09-09-2009, 8:20 AM

    Re: How to change message text about hitting file size limit for IIS7

    Hi,
     
    You can use this way :
     
    <script>
     function CuteWebUI_AjaxUploader_OnError(msg)
     {
    if(msg&&msg.indexOf("applicationHost.config")!=-1)
    {
      alert(" OnError : "+msg)
      return false;
     }
    }
    </script>
View Complete Thread