news.asp
来自「实现对图片的基本处理:打开、增加、删除等。」· ASP 代码 · 共 33 行
ASP
33 行
<!--#include file="inc/config.asp"-->
<!--#include file="mdb.asp"-->
<!--#include file="inc/format.asp"-->
<!--#include file="inc/error.asp"-->
<!--#include file="inc/inc.asp"-->
<!--#include file="inc/news_body.asp"-->
<%
stats="杂七零八"
dim founderr,errmsg
founderr=false
errmsg=""
if request("page")<>"" then
if not isInteger(request("page")) then
founderr=true
errmsg=errmsg+"<br>"+"<li>非法的新闻分页参数。"
end if
end if
if request("type")<>"" then
if not isInteger(request("type")) then
founderr=true
errmsg=errmsg+"<br>"+"<li>非法的新闻显示参数。"
end if
end if
if founderr then
call diserror()
else
call head()
call menu()
call news_body()
call footer()
end if
%>
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?