读取 iFrame 中的 HTML 文件并转换为 PDF
下面是我的 HTML 文件代码
<div>
<asp:Panel ID="pnlPDF" runat="Server">
<iframe type="application/pdf" src="up/waters 6form.pdf"
width="956" height="500"></iframe>
</asp:Panel>
</div>
在这个 HTML 中有一个可填充的 PDF... 用户输入数据并提交。 当用户提交时我需要转换成PDF文件。
假设 pdf 文件包含 姓名: __________ 性别: __________
当用户输入详细信息时...如何另存为 pdf
Below is my HTML File code
<div>
<asp:Panel ID="pnlPDF" runat="Server">
<iframe type="application/pdf" src="up/waters 6form.pdf"
width="956" height="500"></iframe>
</asp:Panel>
</div>
In this HTML there is a Fill-able PDF...
User enters data and submits.
when user submits I need to convert into PDF File.
assume that pdf file contains
Name: __________
Gender: __________
when user enters the detail...how to save as pdf
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
听起来有两个问题:
1. 将数据从可填写的 PDF 传输到 ASPX 页面。这就像将帖子更改为 aspx 页面一样简单。
2. 创建 PDF。这将需要更多的工作,并且可能需要像 PDFSharp 这样的第三方产品。
或者,您看过 FDF 吗? http://www.adobe.com/devnet/acrobat/fdftoolkit.html
It sounds like there's two issues:
1. Transfering the data from the fillable PDF to the ASPX page. This is as trivial as changing the post to the aspx page.
2. Creating a PDF. This will take a little more work, and probably requires a third-party product like PDFSharp.
Alternatively, have you looked at FDF? http://www.adobe.com/devnet/acrobat/fdftoolkit.html