?? ttxianshi.asp
字號:
<%@LANGUAGE="VBSCRIPT" CODEPAGE="936"%>
<!--#include file="cn.asp" -->
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>體壇新聞顯示</title>
<style type="text/css">
<!--
body {
background-color: #33FFFF;
}
.style1 {
font-size: 36px;
font-weight: bold;
}
.style2 {font-size: 24px}
-->
</style></head>
<body>
<%
id=request.QueryString("id")
strsql="select * from use2 where 編號="&id
set rs=cn.execute(strsql)
if not rs.eof then
%>
<div align="center" class="style1">
<p>新聞顯示---體壇動態</p>
<table width="100%">
<tr>
<td><%=rs("標題")%> </td>
</tr>
<tr>
<td><%=rs("作者")%> </td>
</tr>
<tr>
<td><%=rs("內容")%> </td>
</tr>
</table>
<%
end if
%>
<p> </p>
<div align="right"><a href="ttliebiao.asp">關閉</a> </div>
<p align="right"> </p>
</div>
</body>
</html>