<!--#include file="conn.asp"-->
<html>
<head>
<title>文件下载</title>
<%
if Request.QueryString("sfile_ID")<>"" then
sql="select * from FW_TAB where sfile_ID="&Request.QueryString("sfile_ID")&""
set rs=conn.Execute(sql)
strfile=rs("file_lj")
rs.close
Response.Redirect strfile
set rs=nothing
end if
%>
</head>
</html>