?? display.asp
字號:
<link rel="stylesheet" href="style.css" type="text/css">
<!--#include file=conn.asp-->
<%
dim key
key=Request.QueryString("id")
set rs=server.createobject("adodb.recordset")
sql="select * from news where id="&key&""
rs.open sql,conn,2,3
%>
<title>閱讀公告</title>
<table width="314" border="0" cellspacing="1" cellpadding="8" align="center" bgcolor="#CC9999">
<tr>
<td colspan="2" align="center"><b><font color="#FFFFFF">閱讀公告</font></b></td>
</tr>
<tr>
<td colspan="2" bgcolor="#FFFFFF" height="6"></td>
</tr>
<tr>
<td width="63"><font color="#FFFFFF">公告標題:</font></td>
<td width="224" bgcolor="#FFFFFF"><%=RS("Title")%></td>
</tr>
<tr>
<td width="63"><font color="#FFFFFF">發布時間:</font></td>
<td width="224" bgcolor="#FFFFFF" align="center"><%=RS("Date")%>發布</td>
</tr>
<tr>
<td width="63" height="152"><font color="#FFFFFF">公告內容:</font></td>
<td width="224" bgcolor="#FFFFFF" height="152"><%=RS("Text")%></td>
</tr>
</table>
<!--#include file=info.asp-->
<%
rs.close
conn.close
set rs=nothing
set conn=nothing
%>
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -