#32006/3/4 20:26:18
我做过一个上传图片的东西,文件名是在服务器端生成的,可以用于写入数据库,你试试吧。
'利用当时的系统时间构造上传后的文件全路径,filename是通过request.form(file对象名)取得的
function getnewFileName(fileName)
dotPosition=len(fileName)-instrrev(fileName,".")
ex_name=right(filename,dotPosition)
newfile=cstr(year(now))
m=month(now)
if m<10 then m="0"&cstr(m) else m=cstr(m) end if
newfile=newfile&m
d=day(now)
if d<10 then d="0"&cstr(d) else d=cstr(d) end if
newfile=newfile&d
h=hour(now)
if h<10 then h="0"&cstr(h) else h=cstr(h) end if
newfile=newfile&h
m=minute(now)
if m<10 then m="0"&cstr(m) else m=cstr(m) end if
newfile=newfile&m
newfile="zp\"&newfile&"."&ex_name
newfile=server.mapPath(newfile)
getnewFileName=newfile
end function
闭起眼睛看人生