Topbar
Topbar
Sign in
|
Join
|
Client Center
Home
Products
Client Center
Contact
Purchase
Support forums
»
Products
»
Ajax Uploader
»
Re: How to change message text about hitting file size limit for IIS7
Re: How to change message text about hitting file size limit for IIS7
09-09-2009, 8:20 AM
cutechat
Joined on 07-22-2004
Posts 2,332
Re: How to change message text about hitting file size limit for IIS7
Reply
Quote
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