樱姬华传女主喜欢哥哥:Server.CreateObject 失败 求助

来源:百度文库 编辑:中科新闻网 时间:2024/05/14 05:27:07
我的网页中有一个页面出现下面的错误信息
Server 对象 错误 'ASP 0177 : 800401f3'

Server.CreateObject 失败

/cn/ordermake/AddOrderMake.asp,行 12

800401f3
我用的是access的数据库,原代码为:
<%
'--------------------------
Server.ScriptTimeOut=1800 '脚本超时设置为1800(30分种)
Set upl = Server.CreateObject("SoftArtisans.FileUp")
upl.Path = Server.MapPath("UP_PIC/")
'----文件命名----
todayArr=split(cstr(date()),"-",-1,1)
today_year=todayArr(0)
if len(todayArr(1))=1 then today_month="0"+todayArr(1) else today_month=todayArr(1)
if len(todayArr(2))=1 then today_day="0"+todayArr(2) else today_day=todayArr(2)
today2=cstr(time())
today_time=replace(today2,":","")
randomize()
SJS=cstr(int(rnd()*10000))
today = today_year &"."& today_month &"."& today_day &"." & today_time & SJS
'----文件上传----