后台传图片时出个错高手帮帮忙

[复制链接]
后台传图片时出个错高手帮帮忙 Microsoft VBScript 运行时错误 '800a01f4' 变量未定义: 'sjCat_Upload' \web\admin\ziupok.asp, line 18 Host by NetBox Version 2.8 Build 4128

源代码帮帮看哪错了?
<!--#include file="upconn.asp"-->
<!--#include file="cookies.asp"-->
<%Server.ScriptTimeOut=5000%>
<!--#include file="../config.asp"-->
<!--#include file = "../foxx.inc"-->
<%
dim flag
flag=request.cookies("foxwww")("fox")
if flag=10 then
response.Write "<script LANGUAGE='javascript'>alert('您只是后台测试员,请注意身份!');window.location='right.asp';</script>"
response.end
end if
%>
<%
dim upload,file,formElement,formFile,iCount,fileExt,xxid,username,huitype,formPath,rs,sql,filename
iCount=0
set upload = new sjCat_Upload
Set file = upload.file("file1")
username=upload.form("username")
xxid=upload.form("xxid")
if file.filesize<1 then
  response.write "<font size=2>请先选择你要上传的图片 [ <a href=# onclick=history.go(-1)>重新上传</a> ]</font>"
response.end
end if
fileExt=lcase(right(file.filename,4))
if fileEXT<>".gif" and fileEXT<>".jpg" and fileEXT<>".bmp" then
  response.write "<font size=2>文件格式不对 [ <a href=# onclick=history.go(-1)>重新上传</a> ]</font>"
response.end
end if
if file.filesize>1024000 then '这是1000K的图片大小数据
  response.write "<font size=2>图片大小超过了限制(不大于100K) [ <a href=# onclick=history.go(-1)>重新上传</a> ]</font>"
response.end
end if
filename=formPath&year(now)&month(now)&day(now)&hour(now)&minute(now)&second(now)&fileExt
if file.FileSize>0 then
    file.Save2File Server.mappath("..\newsupfiles") & "\" & FileName  
iCount=iCount+1
end if
set file=nothing
set upload=nothing
if xxid="" then
Response.Write"<li>您操作参数错误!"
response.end
end if
  if username="" then
Response.Write"<li>您操作参数错误!"
response.end
end if
set rs=server.createobject("adodb.recordset")
sql = "select xinxipic,xxid,username from FOX_zixun where username='"&username&"' and xxid='"&xxid&"'"
rs.open sql,conn,1,3
if session("addzixun")<>"" then
  if DateDiff("s",session("addzixun"),Now())<180 then
  response.write "<script>alert('系统保护:你提交数据太快,系统中止运行,请等待180秒钟!!');history.go(-1);</SCRIPT>"
  response.end
  end if
  end if
if not rs.eof or not rs.bof then
  if trim(rs("xxid"))=xxid then
Response.Write"<li>您操作参数错误!"
response.end
end if
else
rs.addnew
rs("username")=username
rs("xxid")=xxid
rs("xinxipic")=filename
rs.update
end if
rs.close
set rs=nothing
if huitype=1 then
set rs=server.createobject("adodb.recordset")
sql = "select dxb from FOX_user where username='"&username&"'"
rs.open sql,conn,1,3
rs("dxb")=rs("dxb")-tdxb
rs.update
rs.close
set rs=nothing
end if
closedb
response.write "图片成功上传!"
response.write "<a target='_blank' href='../newsupfiles/"&FileName&"'>查看</a>"
%>
不懂代码谢谢了~~~~~~~~
分享到:  QQ好友和群QQ好友和群 QQ空间QQ空间 腾讯微博腾讯微博 腾讯朋友腾讯朋友
收藏
收藏0
本帖违规,我要举报
举报本帖
免责声明:
本站资源均来源于网络或是会员上传,版权和著作权归原作者所有,如有不愿意被转载,请点击这里通知我们第一时间删除!
所有资源仅供下载后在本地学习研究参考使用!您必须在下载资源后的24个小时之内,从您的电脑中彻底删除。
所有资源不能用于任何商业和非法目的,否则一切后果请用户自负。如您需要商用,请支持和购买正版,本站不对您的使用负任何责任!
会员所发布的信息中如有涉及到具体的第三方个人(单位/公司)隐私、商业秘密等,侵犯其权益,对其构成不良影响的,本站有权不做通知直接删除!

精彩评论7

跳转到指定楼层
#沙发
anctea 发表于 2009-12-14 15:19:59 | 只看该作者
set upload = new sjCat_Upload

sjCat_Upload 这个类的头文件有没有引进来
#板凳
 楼主| dh0433sl 发表于 2009-12-14 15:48:26 | 只看该作者
<!--#include file="upconn.asp"-->
<!--#include file="cookies.asp"-->
<%Server.ScriptTimeOut=5000%>
<!--#include file="../config.asp"-->
<!--#include file = "../foxx.inc"-->
不是吗。我不太懂
#地板
 楼主| dh0433sl 发表于 2009-12-14 15:51:12 | 只看该作者
2# anctea


<!--#include file="upconn.asp"-->
<!--#include file="cookies.asp"-->
<%Server.ScriptTimeOut=5000%>
<!--#include file="../config.asp"-->
<!--#include file = "../foxx.inc"-->
不是吗。我不太懂
#地窖
 楼主| dh0433sl 发表于 2009-12-14 16:08:31 | 只看该作者
对了.还得说明一下.我没用IIS.用的是ASP调试器.
6#
小忆 发表于 2009-12-15 08:47:45 | 只看该作者
<!--#include file = "../foxx.inc"-->
看看上传组件。遇到这样的问题八成都是上传组件的问题。
很可能是你在本机调试的时候用的是 简易IIS调试器吧。一般这样调试上传组件都会出错。放在服务器里用IIS调试不会有这样的错误!
你测试下。如果还有问题。在发帖。我来给你解决!
7#
 楼主| dh0433sl 发表于 2009-12-16 11:11:04 | 只看该作者
6# 小忆 感谢您。问题就 您说的,谢谢啦。
8#
LAIFU886 发表于 2009-12-16 12:53:00 | 只看该作者
看看上传组件。遇到这样的问题八成都是上传组件的问题。
很可能是你在本机调试的时候用的是 简易IIS调试器吧。一般这样调试上传组件都会出错。放在服务器里用IIS调试不会有这样的错误!
你测试下。如果还有问题。 ...
小忆 发表于 2009-12-15 08:47
正解
您需要登录后才可以回帖 登录 | 注册帐号

本版积分规则

  • 优秀管理者勋章

    优秀管理者勋章
  • 爱心大使勋章

    爱心大使勋章
  • 风雨同舟勋章

    风雨同舟勋章
  • 搜虎精品社区贡献奖杯

    搜虎精品社区贡献奖杯
  • 搜虎帅哥勋章

    搜虎帅哥勋章
  • 特殊贡献勋章

    特殊贡献勋章
  • 优秀虎友勋章

    优秀虎友勋章
  • 搜虎优秀督察员

    搜虎优秀督察员
  • 终身成就勋章

    终身成就勋章
  • 杰出虎友勋章

    杰出虎友勋章

关注0

粉丝3

帖子0

发布主题
15年专注源码提供
侵权投诉处理

点击这里投诉侵权

周一至周日10:00-21:00

反馈建议/违规信息举报

webmaster@souho.net 在线客服咨询

扫描二维码关注我们

严禁任何人以任何形式在本站发表与我国法律相抵触的言论!本站资源仅供本地学习研究,禁止用于任何违法犯罪活动!

搜虎源码所有资源来自网络收集整理,版权和著作权归原作者所有,仅供本地研究学习。若有侵权,请联系管理员及时删除!

所有资源严禁用于任何商业目的,否则一切后果请用户自负。如您需要商用,请支持和购买正版,本站不对您的使用负任何责任!

如会员所发布的信息中有涉及到具体的第三方个人(单位/公司)隐私、商业秘密等,侵犯其权益,对其构成不良影响的,本站有权不做通知将该信息予以直接删除处理!

网站备案号: 鄂ICP备17009394号-2