⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 softimg.asp

📁 动感系统XP Access版,服务器需要安装Jmail 组件 配置SendMessages.asp 最后部分的参数
💻 ASP
字号:
<!--#include file="conn.asp" -->
<% if Trim(Request.QueryString("SoftID"))<>"" then
 set rs=server.createobject("adodb.recordset")
sql="select SoftName,SoftVer,SoftViewImg from SoftDown_SoftInfo where SoftID="&request.QueryString("SoftID")   
rs.open sql,conn,1,1  
if Not(rs.eof and rs.bof) then 
%>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title><%= trim(rs("SoftName"))& " "& trim(rs("SoftVer")) %></title>
<style type="text/css">
<!--
.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 align="center" class="unnamed1"><%= trim(rs("SoftName"))& " "& trim(rs("SoftVer")) %> 的软件界面</td>
  </tr>
  <tr>
    <td align="center"><img src="<%= rs("SoftViewImg") %>"></td>
  </tr>
</table>
</body>
</html>
<% 
end if
rs.close
set rs=nothing
end if
CloseDatabase
 %>

⌨️ 快捷键说明

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