view_news.asp
来自「不错的ASP整站源代码。在IIS环境下运行都没有问题」· ASP 代码 · 共 28 行
ASP
28 行
<!--#include file="../../include/pub_func.asp" -->
<!--#include file="../../Include/db_conn.asp" -->
<%
newsid=request("newsid")
set myrs=server.CreateObject("adodb.recordset")
myrs.Open "select * from ys_news where id ="&newsid ,conn,1,1
%>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>新闻预览</title>
<link href="../include/styles.css" rel="stylesheet" type="text/css">
</head>
<body>
<table width="90%" border="0" cellspacing="2" cellpadding="0" align="center">
<tr>
<td height="45" align="center"><font><%=myrs("title")%><input type="hidden" name="title" value='<%=title%>' ID="Hidden1"></font>
<hr size="1"></td>
</tr>
<tr>
<td height="155">
<%=repHtmlCode2(myrs("content"))%>
</td>
</tr>
</table>
</body>
</html>
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?