Access Is Denied Error In Ie While File Uploading
I am currently working on a new site under .NET MVC platform and I am trying to implement an asynchronous user upload image through iframe. Although I almost complete my task and i
Solution 1:
I saw this IE bug before,finally I changed my method .triggering change event of input element programmically consider as security risk by IE :( (so stupid IE)
By default IE not let you trigger file element change, if you want you this feature can use ajaxuploader or fileuploader
var uploader = new qq.FileUploader({
// pass the dom node (ex. $(selector)[0] for jQuery users)element: document.getElementById('file-uploader'),
// path to server-side upload scriptaction: '/server/upload'
});
Post a Comment for "Access Is Denied Error In Ie While File Uploading"