【发布时间】:2015-09-17 05:00:00
【问题描述】:
我正在开发一个 ERP。我有 html 发票,需要作为电子邮件。问题是在 jquery 和 ajax 中构建发票,我需要转换 PDF 并邮寄该发票,请帮我解决这个问题!
【问题讨论】:
-
stackoverflow.com/tour ..欢迎来到 SO ,一个很好的起点
标签: jquery html asp.net ajax css
我正在开发一个 ERP。我有 html 发票,需要作为电子邮件。问题是在 jquery 和 ajax 中构建发票,我需要转换 PDF 并邮寄该发票,请帮我解决这个问题!
【问题讨论】:
标签: jquery html asp.net ajax css
您可能需要一次专注于一件事情。这只是您的要求的一个开始。
生成 PDF:从编辑器中获取 html 并将其发送以创建 PDF(您可以使用 itextSharp 或 EO.PDf
//Code to convert an Url or HTML file to PDF. The following code writes output to a file. You can
//also write output to a Stream, a PdfPage, or a PdfDocument object
HtmlToPdf.ConvertUrl(urlOrHtmlFile, outputFileName);
附上生成的PDF,然后Email. Email with Attachment
根据需要检查并更改您的规范。 s 在SO 上提供特定场景以获得帮助。
【讨论】: