Click here to Skip to main content
15,906,285 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hi i have a ppt file. Using file upload control i am able to save doc,docx,xls,xlsx,pdf fiels but i'm unable to store ppt file.

Please suggest me with a solution.

Thanks,
Rajesh
Posted

1 solution

what error do you get while upload. file upload control will not manually block any file type. see if you have add any code to restricts some file extensions or something or may be you can check things in different browser. also you need to check the file size of ppt. by default file upload control allow to upload 4 MB file. you need to manually set maxrequestlength form web config file if your file size is more than 4 MB.

hope this will help you .
 
Share this answer
 
Comments
Rajesh Sannidhi 5-Feb-14 0:49am    
Yes Ravi my file size is 4.7 MB. This might be the problem. Can you please suggest me how to give the file size in web.config file.

Thanks for your response.
Rajesh
ravikhoda 5-Feb-14 1:01am    
<httpruntime maxrequestlength="1048576">

add this to your webconfig. change 1048576 with your max size . file upload suppport up to 2 gb. also mark answer,
Rajesh Sannidhi 5-Feb-14 1:51am    
Thanks for your solution. Working fine now...
Thank you so much.

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900