📄 shownewsinfo.asp
字号:
<%@LANGUAGE="VBSCRIPT" CODEPAGE="936"%>
<!--#include file="../inc/conn.asp"-->
<%id=request("id")
set rs=conn.execute("select * from news where id="&id&"")
if rs.eof then
response.write""
else%>
<html>
<head>
<title><%=rs("newstitle")%></title>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<link href="../STYLE.CSS" rel="stylesheet" type="text/css">
</head>
<body>
<table width="100%" border="0" cellpadding="5" cellspacing="1" bgcolor="#000000">
<tr>
<td bgcolor="#f1f1f1">标题:<%=rs("newstitle")%></td>
</tr>
<tr>
<td bgcolor="#FFFFFF">
<% If rs("newsphoto")<>"" Then %>
<img src="../admin/pic/<%=rs("newsphoto")%>" alt="" hspace="10" vspace="10" border="0" align="left" class="img">
<% Else %>
<% End If %>
<%=rs("newscontent")%></td>
</tr>
</table>
</body>
</html>
<%end if
rs.close
set rs=nothing
set conn=nothing%>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -