📄 foster_wealthopen.asp
字号:
<%@LANGUAGE="VBSCRIPT" CODEPAGE="936"%>
<!--#include file=DataBase/conn.asp-->
<%
set rse=server.CreateObject("adodb.recordset")
sqle="select * from tb_foster_wealth where id="&request("id")
rse.open sqle,conn,1,1
%>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>书籍信息</title>
<link href="CSS/css.css" rel="stylesheet" type="text/css">
<style type="text/css">
<!--
.style1 {
font-size: 16px;
font-weight: bold;
color: #FF0000;
}
body,td,th {
font-size: 12px;
}
body {
background-color: #efefef;
}
-->
</style>
</head>
<body>
<form name="form1" method="post" action="">
<table width="430" height="289" border="0" align="center" cellspacing="0" >
<tr align="center">
<td colspan="2"><span class="style1">书籍信息</span> <input name="post" type="hidden" id="post" value="true"></td>
</tr>
<tr align="center">
<td colspan="2" height="1" bgcolor="#000000"></td>
</tr>
<tr>
<td width="77" align="center">书 名:</td>
<td width="349"> <%=rse("title")%></td>
</tr>
<tr>
<td align="center">出版社:</td>
<td> <%=rse("fromto")%></td>
</tr>
<tr>
<td height="48" align="center">作 者:</td>
<td> <%=rse("author")%></td>
</tr>
<tr>
<td height="97" align="center" valign="top">简 介:</td>
<td valign="top"> <%=htmlcode(server.htmlencode(rse("content")))%></td>
</tr>
<tr align="center">
<td colspan="2"> </td>
</tr>
</table>
</form>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -