0
function printTransactionDetails(htmlString)

    'set objShell = CreateObject("Shell.Application") 
    'msgbox objShell
    Const OLECMDID_SAVE = 3
    Const OLECMDID_SAVEAS = 4
    Const OLECMDID_PRINT = 6 
    Const OLECMDEXECOPT_DONTPROMPTUSER = 2 
    Const PRINT_WAITFORCOMPLETION = 2
        MsgBox ("amogh0")   
        Set ie = CreateObject("InternetExplorer.Application")
        'Set ie = new InternetExplorer
        MsgBox ("amogh1")
        'navigate to blank page so that the document object is available
        ie.navigate "about:blank"
        ie.visible=0
        'msgbox ie.document.body.innerHTML
        ie.document.body.style.margin = 20 
        ie.document.body.innerHTML=htmlString
        'msgbox ie.document.body.innerHTML
        ie.ExecWB OLECMDID_PRINT, OLECMDEXECOPT_DONTPROMPTUSER,PRINT_WAITFORCOMPLETION
        'Quit IE
        ie.quit
end function

我有一个 JSP,其中有上面的代码 .. 它用于打印。当我使用 https://loclhost:8444/MyApp 时,CreateObject("InternertExplorer.Application") 抛出错误,而当我使用 https://10.192.51.xx:8444/MyApp 时它工作

4

1 回答 1

0

您没有访问过上述代码中的主机名或 IP 地址。如果它使用您的 IP 而不是主机名,那么我只能想象以下两件可能出错的事情。

  1. 与 IP 地址的 DNS 映射。
  2. 主机名拼写错误。根据您的描述,您似乎已将“localhost”写为“loclhost”

请提供引发错误的确切代码。

于 2013-09-05T12:42:39.877 回答