zip file download not working in IE6
I have given the javascript code like this
self.location = OmanPath()
+ "Customer/Registration/UploadedPhoto/SampleImages.zip";
But this is not workin开发者_Go百科g in IE6. What may be the reason
This code not working for zip file download. It is working in IE7 and IE8
Try replacing self
with:
document.location.href
精彩评论