Reputation: 21
How can I pass multiple file in appendheader()
for single file my code is -
Response.AppendHeader("Content-Disposition", "attachment; filename=" + sheet + ".pdf");
Upvotes: 0
Views: 480
Reputation: 25619
Short answer: That's impossible. You can only send one file at a time to the browser
Upvotes: 2