Export from HTML to PDF (C#)
- by Sem Dendoncker
Hi,
In our applications we make html documents as reports and exports.
But now our customer wants a button that saves that document on their pc. The problem is that the document includes images.
You can create a word document with the following code:
private void WriteWordDoc(string docName)
{
Response.Buffer = true;
Response.ContentType =…