读取 iFrame 中的 HTML 文件并转换为 PDF

发布于 2024-12-05 17:19:13 字数 461 浏览 0 评论 0原文

下面是我的 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

假扮的天使 2024-12-12 17:19:13

听起来有两个问题:
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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文