Click here to Skip to main content
15,900,907 members
Please Sign up or sign in to vote.
1.00/5 (2 votes)
See more:
C#
What is the minimum limit of a asp .net to export pdf file from crystal report using asp .net 


What I have tried:

the minimum limit i am getting only 75 pdf at one click of a button actually i want to export 80 thousand pdf file.
C#
Any Solution how to go for it
Posted
Updated 26-Dec-16 1:50am
v2
Comments
Kornfeld Eliyahu Peter 26-Dec-16 7:14am    
80,000 PDF files? On a single click?
Khan Sameer 26-Dec-16 7:16am    
no but atleast 500 or 1000

1 solution

Basically HTML does not support such thing...
You have two options:
1. If the file list is known on the client, you can use special JavaScript library to initiate multiple downloads... You can find one of those libraries here: GitHub - sindresorhus/multi-download: Download multiple files at once[^]
2. If the list of files is something dynamic and comes from the server, you should consider to pack all those files into a single zip and serve it as one...

The most important thing is: inform the end user, that by clicking the button he will download a large amount of files! Without it you may find yourself on the dark side of the force in no time!
 
Share this answer
 

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