📄 previewimg.asp
字号:
<!--#include file="config.asp" -->
<%
Dim Rs,SQL,softid,PreviewImg,SoftImageUrl,SoftName
Dim strUrl,HtmlFileUrl,HtmlFileName,ChannelRootDir
If Not IsNumeric(Request("softid")) And Request("softid") <> "" then
Response.Write"错误的系统参数!ID必须是数字"
Response.End
Else
softid = CLng(Request.querystring("softid"))
End If
If Not IsObject(Conn) Then ConnectionDatabase
Newasp.ReadChannel(ChannelID)
ChannelRootDir = Newasp.InstallDir & Newasp.ChannelDir
If SoftID <> "" Then
SQL="SELECT A.softid,A.SoftName,A.SoftVer,A.SoftImage,A.HtmlFileDate,C.HtmlFileDir FROM NC_SoftList A INNER JOIN [NC_Classify] C On A.ClassID=C.ClassID WHERE A.ChannelID="& ChannelID &" And A.isAccept <> 0 And A.softid="&softid
Set Rs = Newasp.Execute(SQL)
If Not(Rs.EOF And Rs.BOF) Then
If Not IsNull(Trim(Rs("SoftImage"))) And Trim(Rs("SoftImage")) <> "" Then
SoftImageUrl = Newasp.GetImageUrl(Rs("SoftImage"), Newasp.ChannelDir)
PreviewImg = Newasp.GetFlashAndPic(SoftImageUrl, 0, 0)
'PreviewImg = "<img src='"& SoftImageUrl &"' border=0>"
Else
PreviewImg = "<BR><li>对不起!没有图片预览。"
End If
If CInt(Newasp.IsCreateHtml) <> 0 Then
HtmlFileUrl = ShowChannelPath(ChannelRootDir, Rs("HtmlFileDir")) & Newasp.ShowDatePath(Rs("HtmlFileDate"), Newasp.HtmlPath)
HtmlFileName = Newasp.ReadFileName(Rs("HtmlFileDate"), Rs("softid"), Newasp.HtmlExtName, Newasp.HtmlPrefix, Newasp.HtmlForm, "")
strUrl = HtmlFileUrl & HtmlFileName
Else
strUrl = ChannelRootDir & "show.asp?id="& Rs("softid")
End If
SoftName = Trim(Rs("SoftName") & " " & Rs("SoftVer"))
%>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; chaRset=gb2312">
<title><%= Trim(SoftName)%></title>
<style type="text/css">
<!--
a{
font-size: 16px; text-decoration: none; color: #0033CC;
}
a:hover{
font-size: 16px; text-decoration: underline; color: #FF6600;
}
.unnamed1 {
font-size: 18px;
line-height: 180%;
font-weight: bold;
color: #003399;
}
-->
</style>
</head>
<body>
<table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td height="30" align="center"><a href="<%= Trim(strUrl)%>"><b><%= Trim(SoftName)%> 的软件界面</b></a></td>
</tr>
<tr>
<td align="center"><a href="<%= Trim(strUrl)%>"><%= PreviewImg %></a></td>
</tr>
<tr>
<td height="30" align="center"><a href="<%= Trim(strUrl)%>">点击此处进入 <%= Trim(SoftName)%> 的下载页面--==>></a></td>
</tr>
</table>
</body>
</html>
<%
End If
Rs.Close
Set Rs=Nothing
End If
CloseConn
%>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -