This is an archived forum post. The information may be outdated. Contact us if you have any questions.

Save PDF to Server (Folder in root directory of application) in asp.net

maziksol wrote on 2016-01-29:
Hi,


I want to save the PDF in folder instead of downloading it directly in asp.net. Please guide me.

Actually i want to purchase this generator, If it working fine with my requirement i will purchase it.

Thanks
support wrote on 2016-01-29:
Hello,

This code saves PDF to a folder:
FileStream fileStream = new FileStream("c:/pdf/example.com.pdf", FileMode.CreateNew);
client.convertURI("http://www.example.com", fileStream);
fileStream.Close();
kalarasaa76 wrote on 2016-10-10:
please i want to this same in PHP