downloadfile1.asp
来自「OFFICE办公自动化」· ASP 代码 · 共 12 行
ASP
12 行
<!--#include file="../inc/conn.asp"-->
<!--#include file="../inc/Const.asp"-->
<%
Set rs=Server.CreateObject("ADODB.recordset")
sql="select * from workflow_ft_file_content where id=" & trim(request("id"))
rs.open sql,oConn,1,1
Response.ContentType = rs("fileContentType")
Response.BinaryWrite rs("content").getChunk(7500000)
rs.close
set rs=nothing
set oConn=nothing
%>
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?