Hi Support team,
I have a requirement in which I want to present the user with a Save file dialog before I write my modified PPTX (I am using PresentationEx object) to the disk.
Can you please suggest a way I can do this.
Regards,
Varun
Hi Support team,
I have a requirement in which I want to present the user with a Save file dialog before I write my modified PPTX (I am using PresentationEx object) to the disk.
Can you please suggest a way I can do this.
Regards,
Varun
Hi Varun,
Thanks Mudassir.
I used the output stream.
For anybody else, who wants an idea, this is the code.
Response.Clear();
Response.AddHeader("Content-Disposition", "attachment;filename=\"" + filename + "\"");
pres.Write(Response.OutputStream); // pres is PresentationEx object.
Response.End();
Regards,
Varun
Hi Varun,