大家好
請教大家 , ASP如何將HTML轉PDF ?
(環境 : WIN2012 IIS8 ASP網站)
我試過 Server.CreateObject("ASPExec.Execute") + wkhtmltopdf.exe
失敗步驟 https://ithelp.ithome.com.tw/questions/10193556
先謝謝各位!
不要再想用ASP了.. 趕快昇級到.NET了. 現在都2019年中了.. 還在爭札在2012??
https://www.evopdf.com/?gclid=EAIaIQobChMIzcXMmOSF4gIVWHZgCh3HWgRaEAAYAiAAEgIQefD_BwE
你若要用.net的話,我看你是用wkhtmltopdf.exe
正好我有用這個來轉~你參考看看
<%
'產生PDF
Dim Paths As String = "Upload/" '存放PDF位置
Dim Web_Url As String = "http://" & Request.ServerVariables("SERVER_NAME") & "/test.htm" '掃描目標來源
Dim App_Str As String = Server.MapPath("bin/") & "wkhtmltopdf.exe" '轉PDF工具檔
Dim FileName As String = "test.pdf" 'PDF檔名
Dim Pem_Str As String = Web_Url & " " & Server.MapPath(Paths) & FileName '完整敘述
Dim p As System.Diagnostics.Process = System.Diagnostics.Process.Start(App_Str, Pem_Str) '使用命令執行
p.WaitForExit()
%>