1

I am using TinyMCE AND AsyncFileUpload AND an Update Panel After Uploading , I cannot delete the Images while Adding them to tinymce content

because it is being used by another process.

lock (this) { if (File.Exists(_FILE_HANDLER_)) {

                        File.Delete(_FILE_HANDLER_);
                    }
                }

Do I have to Dispose TinyMce ::

Like This :

 tinyMCE.execCommand('mceFocus', false, '<%= TextBox1.ClientID %>');
    tinyMCE.execCommand('mceRemoveControl', false, '<%= TextBox1.ClientID %>'); 

Any Ideas.

4

1 回答 1

0

It sounds like the upload process is still holding onto the image.

于 2010-02-07T14:06:09.593 回答