I am working on a file upload control using jquery and httphandler to upload file asynchronously in asp.net C#. I want to check file size before upload it on server in non-IE browser(e.g Mozilla, chrome) I can easily check the file size but in IE I am not able to check file size on client side. I have also tried to use ActiveX but it is not working in IE 7 or later version. Is there any other way to get file size in IE before it upload to server?
Tell me more
×
Facebook - Stack Overflow is a question and answer site for
facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community.
Facebook engineers participate here along with the best Facebook developers in the world.
If you have a technical question about Facebook, this is the best place to ask.
|
|
|
there is no cross browser solution to it, what you can do is have an ajax function which calls to your server side function which is easy to do in c sharp using ContentLength and quickly check the size of the file via function and then call your main function this would be ideal and cross browser as per my thinking. Let me know if that helps |
|||
|