是否可以使用以下命令动态输出pdf:
Response.ContentType="Application/pdf"
我有一个满是php变量的表格,我想用上面的方法在pdf中输出这些变量。当用户单击网站上的按钮并显示表格中的内容时,我如何创建pdf?
更新:使用html2pdf时,我得到以下错误:
Warning: Cannot modify header information - headers already sent by (output started at /home/medilogi/public_html/v1/wp-content/themes/default/
我通过将数据作为HTML表格字符串发送并设置内容标题,将HTML表格导出到excel:
Dim html as String = "<table><tr><td>example<td></tr></table>"
context.Response.Clear()
context.Response.AddHeader("Content-Disposition", "attachment; filename=" & "exceldata-" &