在win2000与win2003里不能兼容的问题?(20分)

  • 主题发起人 主题发起人 rainee
  • 开始时间 开始时间
R

rainee

Unregistered / Unconfirmed
GUEST, unregistred user!
这段代码能在win2000的IIS里正常运行,而在win2003里却要出错:
set fso = createobject("scripting.filesystemobject")
isExists = false
sd = split(FileExt, "|")
for i = 0 to ubound(sd)
fn = MirRoot &
LogPath &
right("0000"&yy,4) &
"-" &
right("00"&mm, 2) &
"/" &
CurDate &
sd(i)
if fso.fileexists(fn) then
isExists = true
exit for
end if
next
有人能解决能在win2003里运行吗?
 
我查到了是这句不对:
if fso.fileexists(fn) then
可是不知怎么解决!
 
查看一下,scripting.filesystemobject好像未建立成功,在windows2003中不存在,它不属于内置对象
 
什么用途?恶意代码?
 
后退
顶部