readimage.asp

来自「本示例综合展示了NTKO OFFICE文档控件所具有的发布为HTML」· ASP 代码 · 共 16 行

ASP
16
字号
<!--#include file="conn.asp"-->
<%
		sid	= Request.querystring("id")
		SQL = "SELECT * FROM sources WHERE sid =" & sid 
		set RS = conn.execute( SQL )
		
		If not rs.eof  Then 
				
		    response.ContentType = "application/octet-stream"
		    'response.AddHeader"Content-Disposition", "attachment; filename=" & RS("sname")
		    response.binarywrite( RS("scontent") )
		End If
		
		rs.close
		set rs = nothing
%> 

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?