ASP .Net动态渲染PDF后,无法更改页面
我有一个页面,用户可以在其中输入一些信息。页面底部有一个已禁用的复选框,表示他们已阅读要显示的 PDF。他们点击一个链接,动态呈现 PDF 并由用户下载。下载 PDF 后,会发出 Response.End(),这意味着页面上无法执行任何其他操作。我希望能够在发送 PDF 后启用该复选框。
我尝试将数据保存到会话中,打开一个新窗口,然后使用会话数据从该新窗口发送 PDF。但是,IE 弹出窗口阻止程序会阻止它。
有什么想法吗?
I have a page where the user enters some information. At the bottom of the page there is a checkbox that is disabled, that says they have read the PDF to be displayed. They click on a link which dynamically renders a PDF and is downloaded by the user. After downloading the PDF a Response.End() is issued, which means nothing else can be done on the page. I want to be able to enable the checkbox after the PDF is sent.
I have tried saving the data to the Session, opening a new window, and using the Session data to send the PDF from that new window. However, IE popup-blocker blocks it.
Any ideas?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
有没有办法使用 jQuery/AJAX 来实现这个目的?如果您这样做了,您可以通过 AJAX 请求发送下载 PDF 的请求,然后使用 javascript 重新启用该复选框。
Is there anyway to use jQuery/AJAX for this? If you did you could send the request to download the PDF via the AJAX request, and then re-enable the checkbox with javascript afterwards.