show_news.asp
来自「ASPSQL企业网络管理系统」· ASP 代码 · 共 22 行
ASP
22 行
<%@LANGUAGE="VBSCRIPT" CODEPAGE="936"%>
<%
if Request.QueryString("id") = "" then
session("sqlString") = "select * from news where id = 1"
else
session("sqlString") = "select * from news where id = " & Request.QueryString("id")
end if
%>
<html>
<head>
<title>新闻内容</title>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<link href="../style/style.css" rel="stylesheet" type="text/css">
</head>
<body>
<%
Server.Execute("../news/show.asp")
%>
</body>
</html>
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?