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

📄 ylxianshi.asp

📁 基于WEB页面的新闻发布系统+毕业论文:实现新闻的显示
💻 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 use1 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("标题")%>&nbsp;</td>
    </tr>
    <tr>
      <td><%=rs("作者")%>&nbsp;</td>
    </tr>
    <tr>
      <td><%=rs("内容")%>&nbsp;</td>
    </tr>
  </table>
<%
end if
%>
  <p>&nbsp;</p>
  <div align="right"><a href="ylliebiao.asp">关闭</a>    </div>
  <p align="right">&nbsp;</p>
</div>
</body>
</html>

⌨️ 快捷键说明

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