📄 softimg.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 + -