标题:ASP直接调用EXCEL数据的例子 有问题!
取消只看楼主
renxiaoyi
Rank: 2
等 级:论坛游民
帖 子:59
专家分:16
注 册:2010-8-23
结帖率:33.33%
 问题点数:0 回复次数:3 
ASP直接调用EXCEL数据的例子 有问题!
代码:<%
Set xlApp = server.CreateObject("Excel.Application")

strsource = "D:\info.sinobal\test\ss.xls"

Set xlbook = xlApp.Workbooks.Open(strsource)
Set xlsheet = xlbook.Worksheets(1)

i=1
response.write "<table cellpadding=0 cellspacing=0 border=1 width=500>"
while xlsheet.cells(i,1)<>""

response.write "<tr>"
response.write " <td height=20 align=center width=100>" & xlsheet.Cells(i, 1) & "</td>"
response.write " <td height=20 align=center width=200>" & xlsheet.Cells(i, 2) & "</td>"
response.write " <td height=20 align=center width=200>" & xlsheet.Cells(i, 3) & "</td>"
response.write "</tr>"
i=i+1

wend
response.write "</table>"
set xlsheet=nothing
set xlbook=nothing
xlApp.quit
%>
出错了:
Server 对象 错误 'ASP 0178 : 80070005'

Server.CreateObject 访问错误

/untitled.asp,行 11

检查权限时,对 Server.CreateObject 的调用失败。拒绝对此对象的访问
怎么回事呢?
搜索更多相关主题的帖子: EXCEL test 
2011-05-09 10:55
renxiaoyi
Rank: 2
等 级:论坛游民
帖 子:59
专家分:16
注 册:2010-8-23
得分:0 
回复 2楼 yms123
我在本地直接浏览的,不是在iis上面。
2011-05-09 15:18
renxiaoyi
Rank: 2
等 级:论坛游民
帖 子:59
专家分:16
注 册:2010-8-23
得分:0 
回复 4楼 hams
直接在dm里浏览的。
2011-05-10 09:44
renxiaoyi
Rank: 2
等 级:论坛游民
帖 子:59
专家分:16
注 册:2010-8-23
得分:0 
我加了everyone的权限 不行。
2011-05-10 09:45



参与讨论请移步原网站贴子:https://bbs.bccn.net/thread-339257-1-1.html




关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.096681 second(s), 8 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved