?? show_news.asp
字號:
<%@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 + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -