Kashyap
Kashyap

Reputation: 21

How to pass multiple file in Response.AppendHeader()

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

Answers (1)

Shai
Shai

Reputation: 25619

Short answer: That's impossible. You can only send one file at a time to the browser

Upvotes: 2

Related Questions