|
[广告] Excel易用宝 - 提升Excel的操作效率 · Excel / WPS表格插件 ★ 免费下载 ★ ★ 使用帮助★
方法是asp程序读取outlook的 msg邮件内容。(本机环境:iis5)
本机上已经装了outlook组件,并已经给对应的权限,可是在创建Set myOlApp =Server.CreateObject("Outlook.Application") 的时候,有时候可以运行该程序,但有时候就假死在这个语句中了,创建不了,然后报错,脚本超时。不知道是什么问题呢??
还有就是在iis6上就一直没成功运行过该程序组件设置了和本机的一样,。
以下是asp代码(先本机装个ms outlook)
<% On Error Resume Next
'创建一个Outlook实例
Dim myOlApp,Filename
Filename="C:\11.msg"
set myOlApp = Nothing
If typeName(myOlApp)="Nothing" or typeName(myOlApp)="Empty" then
Set myOlApp =Server.CreateObject("Outlook.Application")
Else
Set myOlApp =GetObject("Outlook.Application")
End if
Set myItem = myOlApp.CreateItemFromTemplate(Filename)
fujianCount=myItem.Attachments.count
response.Write"内容: "& myItem.htmlBody &"<br>"
set myItem=Nothing
if err.number <> 0 then
response.write err.description
Else
response.Write("OK")
end if
set myOlApp = Nothing %>
[ 本帖最后由 any2002 于 2010-12-24 13:49 编辑 ] |
|