运行htmldoc的经典asp中的wscript.shell - 没有错误报告但没有工作

时间:2014-02-03 00:31:47

标签: asp-classic htmldoc

以下代码不会产生任何错误,您可以从输出中看到。目的是使用htmldoc将html文件转换为pdf文件。生成的html文件很好,pdf应该保存在与pdf相同的文件夹中,但是没有生成pdf文件。

代码在Windows 2012 IIS 8上运行。代码在Windows 2003服务器上正常运行,没有任何问题。

输出结果为:

从这里开始

2/2/2014 3:48:08 PM

通过

成功运行

2/2/2014 3:48:08 PM

有人可以帮忙吗?非常感谢!

CmdeHTMLDOC=chr(34)& exe_path & chr(34) & " --header ... --footer ../  -t pdf  --textfont Arial --fontsize 9  --quiet --left 1.5cm  --right 1.5cm  " & "  --webpage -f "
set wshell=Server.CreateObject("wscript.shell")
wpath4pdf= CmdeHTMLDOC & chr(34)& pdf_path &chr(34)&" "& chr(34)& html_path &chr(34)
'wshell.Run wpath4pdf, SW_SHOWNORMAL,true 
Response.Write("Starts here<br/>") 
on error resume next 
%> 
<pre><%=now()%></pre> 
<% 
wshell.Run wpath4pdf, SW_SHOWNORMAL,true
Response.write "Passed through<br/>" 
if err.number <> 0 then 
   response.write "Error detected: " & err.number & ": " & err.Description & "<br/>" 
   on error goto 0 
   response.end 
end if 
on error goto 0 
Response.write "Run sucessfully<br/>" 
%> 
<pre><%=now()%></pre> 
<%Set wshell=nothing

0 个答案:

没有答案