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

📄 display.asp

📁 用asp做的咨询平台 比较简单 但是修改很方便 很实用
💻 ASP
字号:
<!--#include file="conn.asp"-->
<% 
dim theid
theid=request("id")
sql="select * from news where id="&theid
set rs=Server.CreateObject("ADODB.RecordSet")
rs.open sql,conn,1,1
%>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>新闻显示</title>
</head>

<body>
<table width="75%" height="420" border="0" align="center" cellpadding="0" cellspacing="1" bgcolor="#999999">
<tr>
<td height="28" bgcolor="#FFFFFF" align="center"><b><%=rs("title")%></b>
</td>
</tr>
<tr>
<td height="361" valign="top" bgcolor="#FFFFFF">
<table width="705" border="0" align="center">
<tr>
<td height="120">&nbsp;&nbsp;&nbsp;&nbsp;<%=encodehtml(rs("content"))%>
</td>
</tr>
</table>      
</td>
</tr>
<tr>
<td align="right" bgcolor="#FFFFFF"><font size="2">发布时间:<%=rs("addtime")%></font>
</td>
</tr>
</table>
</body>
</html>
<%
rs.close
set rs=nothing
call closeDB()
%>

⌨️ 快捷键说明

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