问答文章1 问答文章501 问答文章1001 问答文章1501 问答文章2001 问答文章2501 问答文章3001 问答文章3501 问答文章4001 问答文章4501 问答文章5001 问答文章5501 问答文章6001 问答文章6501 问答文章7001 问答文章7501 问答文章8001 问答文章8501 问答文章9001 问答文章9501

找个ASP无组件多图片文字上传到数据库原码 在线等

发布网友 发布时间:2022-11-25 00:54

我来回答

1个回答

热心网友 时间:2023-10-06 04:32

<%
我在用的

'----------------------------------------------------------
'***************** 风声无组件上传类 2.0 *****************
'作者:风声
'网站:http://www.17560.net http://www.54nb.com
'邮件:rumor@17560.net
'版权:版权全体,源代码公开,各种用途均可免费使用
'**********************************************************
'----------------------------------------------------------
class uploadclass

private p_maxsize,p_filetype,p_savepath,p_autosave,p_error
private objform,binform,binitem,strdate,lngtime
public formitem,fileitem

public property get version
version="rumor uploadclass version 2.0"
end property

public property get error
error=p_error
end property

public property get maxsize
maxsize=p_maxsize
end property
public property let maxsize(lngsize)
if isnumeric(lngsize) then
p_maxsize=clng(lngsize)
end if
end property

public property get filetype
filetype=p_filetype
end property
public property let filetype(strtype)
p_filetype=strtype
end property

public property get savepath
savepath=p_savepath
end property
public property let savepath(strpath)
p_savepath=replace(strpath,chr(0),"")
end property

public property get autosave
autosave=p_autosave
end property
public property let autosave(byval flag)
select case flag
case 0:
case 1:
case 2:
case false:flag=2
case else:flag=0
end select
p_autosave=flag
end property

private sub class_initialize
p_error = -1
p_maxsize = 153600
p_filetype = "jpg/gif/doc/txt/htm/html/xls/rar/zip/mp3"
p_savepath = "../../wj/"
p_autosave = 0
strdate = replace(cstr(date()),"-","")
lngtime = clng(timer()*1000)
set binform = server.createobject("adodb.stream")
set binitem = server.createobject("adodb.stream")
set objform = server.createobject("scripting.dictionary")
objform.comparemode = 1
end sub

private sub class_terminate
objform.removeall
set objform = nothing
set binitem = nothing
binform.close()
set binform = nothing
end sub

public sub open()
if p_error=-1 then
p_error=0
else
exit sub
end if
dim lngrequestsize,binrequestdata,strformitem,strfileitem
const strsplit="'"">"
lngrequestsize=request.totalbytes
if lngrequestsize<1 then
p_error=4
exit sub
end if
binrequestdata=request.binaryread(lngrequestsize)
binform.type = 1
binform.open
binform.write binrequestdata

dim bcrlf,strseparator,intseparator
bcrlf=chrb(13)&chrb(10)

intseparator=instrb(1,binrequestdata,bcrlf)-1
strseparator=leftb(binrequestdata,intseparator)

dim p_start,p_end,stritem,strinam,inttemp,strtemp
dim strftyp,strfnam,strfext,lngfsiz
p_start=intseparator+2
do
p_end =instrb(p_start,binrequestdata,bcrlf&bcrlf)+3
binitem.type=1
binitem.open
binform.position=p_start
binform.copyto binitem,p_end-p_start
binitem.position=0
binitem.type=2
binitem.charset="gb2312"
stritem=binitem.readtext
binitem.close()

p_start=p_end
p_end =instrb(p_start,binrequestdata,strseparator)-1
binitem.type=1
binitem.open
binform.position=p_start
lngfsiz=p_end-p_start-2
binform.copyto binitem,lngfsiz

inttemp=instr(39,stritem,"""")
strinam=mid(stritem,39,inttemp-39)

if instr(inttemp,stritem,"filename=""")<>0 then
if not objform.exists(strinam&"_from") then
strfileitem=strfileitem&strsplit&strinam
if binitem.size<>0 then
inttemp=inttemp+13
strftyp=mid(stritem,instr(inttemp,stritem,"content-type: ")+14)
strtemp=mid(stritem,inttemp,instr(inttemp,stritem,"""")-inttemp)
inttemp=instrrev(strtemp,"\")
strfnam=mid(strtemp,inttemp+1)
objform.add strinam&"_type",strftyp
objform.add strinam&"_name",strfnam
objform.add strinam&"_path",left(strtemp,inttemp)
objform.add strinam&"_size",lngfsiz
if instr(inttemp,strtemp,".")<>0 then
strfext=mid(strtemp,instrrev(strtemp,".")+1)
else
strfext=""
end if
if left(strftyp,6)="image/" then
binitem.position=0
binitem.type=1
strtemp=binitem.read(10)
if strcomp(strtemp,chrb(255) & chrb(216) & chrb(255) & chrb(224) & chrb(0) & chrb(16) & chrb(74) & chrb(70) & chrb(73) & chrb(70),0)=0 then
if lcase(strfext)<>"jpg" then strfext="jpg"
binitem.position=3
do while not binitem.eos
do
inttemp = ascb(binitem.read(1))
loop while inttemp = 255 and not binitem.eos
if inttemp < 192 or inttemp > 195 then
binitem.read(bin2val(binitem.read(2))-2)
else
exit do
end if
do
inttemp = ascb(binitem.read(1))
loop while inttemp < 255 and not binitem.eos
loop
binitem.read(3)
objform.add strinam&"_height",bin2val(binitem.read(2))
objform.add strinam&"_width",bin2val(binitem.read(2))
elseif strcomp(leftb(strtemp,8),chrb(137) & chrb(80) & chrb(78) & chrb(71) & chrb(13) & chrb(10) & chrb(26) & chrb(10),0)=0 then
if lcase(strfext)<>"png" then strfext="png"
binitem.position=18
objform.add strinam&"_width",bin2val(binitem.read(2))
binitem.read(2)
objform.add strinam&"_height",bin2val(binitem.read(2))
elseif strcomp(leftb(strtemp,6),chrb(71) & chrb(73) & chrb(70) & chrb(56) & chrb(57) & chrb(97),0)=0 or strcomp(leftb(strtemp,6),chrb(71) & chrb(73) & chrb(70) & chrb(56) & chrb(55) & chrb(97),0)=0 then
if lcase(strfext)<>"gif" then strfext="gif"
binitem.position=6
objform.add strinam&"_width",binval2(binitem.read(2))
objform.add strinam&"_height",binval2(binitem.read(2))
elseif strcomp(leftb(strtemp,2),chrb(66) & chrb(77),0)=0 then
if lcase(strfext)<>"bmp" then strfext="bmp"
binitem.position=18
objform.add strinam&"_width",binval2(binitem.read(4))
objform.add strinam&"_height",binval2(binitem.read(4))
end if
end if
objform.add strinam&"_ext",strfext
objform.add strinam&"_from",p_start
inttemp=getferr(lngfsiz,strfext)
if p_autosave<>2 then
objform.add strinam&"_err",inttemp
if inttemp=0 then
if p_autosave=0 then
strfnam=gettimestr()
if strfext<>"" then strfnam=strfnam&"."&strfext
end if
binitem.savetofile server.mappath(p_savepath&strfnam),2
objform.add strinam,strfnam
end if
end if
else
objform.add strinam&"_err",-1
end if
end if
else
binitem.position=0
binitem.type=2
binitem.charset="gb2312"
strtemp=binitem.readtext
if objform.exists(strinam) then
objform(strinam) = objform(strinam)&","&strtemp
else
strformitem=strformitem&strsplit&strinam
objform.add strinam,strtemp
end if
end if

binitem.close()
p_start = p_end+intseparator+2
loop until p_start+3>lngrequestsize
formitem=split(strformitem,strsplit)
fileitem=split(strfileitem,strsplit)
end sub

private function gettimestr()
lngtime=lngtime+1
gettimestr=strdate&lngtime
end function

private function getferr(lngfsiz,strfext)
dim intferr
intferr=0
if lngfsiz>p_maxsize and p_maxsize>0 then
if p_error=0 or p_error=2 then p_error=p_error+1
intferr=intferr+1
end if
if instr(1,lcase("/"&p_filetype&"/"),lcase("/"&strfext&"/"))=0 and p_filetype<>"" then
if p_error<2 then p_error=p_error+2
intferr=intferr+2
end if
getferr=intferr
end function

public function save(item,strfnam)
save=false
if objform.exists(item&"_from") then
dim intferr,strfext
strfext=objform(item&"_ext")
intferr=getferr(objform(item&"_size"),strfext)
if objform.exists(item&"_err") then
if intferr=0 then
objform(item&"_err")=0
end if
else
objform.add item&"_err",intferr
end if
if intferr<>0 then exit function
if vartype(strfnam)=2 then
select case strfnam
case 0:strfnam=gettimestr()
if strfext<>"" then strfnam=strfnam&"."&strfext
case 1:strfnam=objform(item&"_name")
end select
end if
binitem.type = 1
binitem.open
binform.position = objform(item&"_from")
binform.copyto binitem,objform(item&"_size")
binitem.savetofile server.mappath(p_savepath&strfnam),2
binitem.close()
if objform.exists(item) then
objform(item)=strfnam
else
objform.add item,strfnam
end if
save=true
end if
end function

public function getdata(item)
getdata=""
if objform.exists(item&"_from") then
if getferr(objform(item&"_size"),objform(item&"_ext"))<>0 then exit function
binform.position = objform(item&"_from")
getdata=binformstream.read(objform(item&"_size"))
end if
end function

public function form(item)
if objform.exists(item) then
form=objform(item)
else
form=""
end if
end function

private function binval2(bin)
dim lngvalue,i
lngvalue = 0
for i = lenb(bin) to 1 step -1
lngvalue = lngvalue *256 + ascb(midb(bin,i,1))
next
binval2=lngvalue
end function

private function bin2val(bin)
dim lngvalue,i
lngvalue = 0
for i = 1 to lenb(bin)
lngvalue = lngvalue *256 + ascb(midb(bin,i,1))
next
bin2val=lngvalue
end function

end class
%>
声明声明:本网页内容为用户发布,旨在传播知识,不代表本网认同其观点,若有侵权等问题请及时与本网联系,我们将在第一时间删除处理。E-MAIL:11247931@qq.com
折儿是什么意思? 什么叫饭折? 饭折是什么意思 私募股权基金6种模式 私募投资业务管理系统 火山仙泉天然矿泉水产品特点 用苏打片带吃带洗真的能生男孩吗 凡山天然苏打水怎么样 美的面包机和面要多久 美的面包机和面的时间要多长 美的面包机怎么用手动操作 asp 怎么把图片上传到数据库里面然后调用 寻找395/85R22.5轮胎 395/85/22.5是不是代表轮胎宽度39.5厘米 39585r20轮胎是什么意思 请问这个照片上面的雨滴还是水珠效果用哪个手机修图app可以办到呀~感觉像是笔刷类的东西想给哪里弄就 steam桌面软件怎么给图片加上下雨的特效。还是这本来就是一张动态图 用什麽软件可以自己把图片加入动态的下雪或下雨啊 被人举报,一般要过多久才能恢复? 被人举报,一般要过多久才能恢复? 青年人如何在新时代担当责任与使命 怎样理解梦想也是有价钱的 微信被人举报,一般要过多久才能恢复? 兰花集团东峰煤矿贴吧 晋城煤业集团和兰花集团有关系吗?如果有,是什么关系 山西兰花煤炭实业集团有限公司怎么样 兰花集团玉溪煤矿现状 浙江永康到诸暨汽车时刻表?麻烦告诉我下! 绍兴到诸暨西站最晚的车是几点 上虞汽车西站去诸暨客运中心时刻表 跪求从诸暨市到绍兴客运西站的时刻表 ASP+ACCESS无组件上传图片的疑惑 艾恩ASP无组件上传类 Ajax+asp 如果我要图片上传完成后图片地址存入数据库应该怎么改 求助 姐姐能否帮我解释下八大心态啊 三只松鼠品牌swot内外部分别是什么 周公解梦梦见孩子尿床有什么特别的寓意 目前市面上很多全屋定制,那么选择家居设计师的时候有什么需要注意的地方... 邵东农村不动产证发放时间 开发商挪用办证费不办证咋办 农民自建房不动产权证湖南攸县什么时候发放 厨房油烟腻用三字形容 形容黎明来到的时候的诗句 从明发一中到天润城总站西骑电动大约多少分钟 从吴江到苏州国际大厦西骑电动车怎么走最近 顼王乃驰 复斩汉一都尉 杀数十百人 复聚其骑亡其西骑耳 什么意思 从新村到龙凤厂西骑自行车咋走近 从红安西骑摩托车到南京南要多长时间 西方骑士制度与日本武士道有什么关系 遂平至驻马店西骑自行车需要多长时间? 全球通1872222162号码值多少钱? 北京移动全球通号码,13开头,尾号55166,值多少钱?