upload_download.asp
来自「打开目录ads文件夹 找到top_ads.js文件 用记事本打开后就可以」· ASP 代码 · 共 26 行
ASP
26 行
<!-- #include file="include/skin.asp" -->
<%
tit="上传文件下载"
call web_head(2,0,4,0,0)
'----------------------------中间 开始----------------------------
call upload_download()
'----------------------------中间 结束----------------------------
call web_end(0,4)
sub upload_download()
dim id,url,upload_path
upload_path=web_dim(13)
id=trim(request.querystring("id"))
sql="select top 1 url from upload where types=1 and id="&id
set rs=joekoe_cms.exec(sql,1)
if rs.eof then
rs.close
response.write joekoe_cms.js_put("alert(""上传的文件为无效的上传或不存在!"");window.close();",1)
exit sub
end if
url=rs(0)
rs.close
call format_redirect(upload_path&url)
end sub
%>
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?