Topbar
Topbar
Sign in
|
Join
|
Client Center
Home
Products
Client Center
Contact
Purchase
Support forums
»
Products
»
Ajax Uploader
»
Re: getting error when uploading the same document I have open in Word
Re: getting error when uploading the same document I have open in Word
10-28-2009, 9:43 AM
cutechat
Joined on 07-22-2004
Posts 2,332
Re: getting error when uploading the same document I have open in Word
Reply
Quote
Hi,
Users can't upload locked files.
But you can modify the error message by this way :
function CuteWebUI_AjaxUploader_OnError(msg)
{
if(msg.indexOf("IO_SharingViolation_File")!=-1)
{
alert("the file is locked");
return false;
}
}
View Complete Thread