简体   繁体   中英

ASP.NET MVC. How to download many text files (pdf, docx, txt) and send to print?

I have to send many, difference text files to print one click on button in my WebApplication but the first I have to download this files from server.

How should I have to do?

You cannot send more than one file in the same response. It's programmatically feasible, but the browser will not be able to understand the response.

If you need to send several content in just one event (a click response, for example) it is better to compress the documents and send one .zip file. The other option is to response to different buttons, one per file.

The reason is that the HTTP only expects one kind of response, not two or more.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM