📄 changetop.jsp
字号:
<%
/*##################################################################**
**# 项目名称:LyNews『凌云新闻』 #**
**# #**
**# 程序开发: teddy 『星语凌』 #**
**# #**
**# 版权所有: 凌云创作室 (原流星电脑工作室) #**
**# #**
**# 主页地址: http://www.lybbs.com #**
**# http://www.lybbs.net #**
**# 电邮地件: horseye@sina.com #**
**# #**
**##################################################################*/
%>
<%@include file="config.jsp"%>
<%@include file="getsession.jsp"%>
<%@page contentType="text/html;charset=GBK"%>
<%
ParameterUtils.setCharacterEncoding(request);
int newsID=ParameterUtils.getInt(request,"newsID");
int top=ParameterUtils.getInt(request,"top");
if(newsID==0 || top<0 || top>3)
throw new Exception("您正在尝试进行非法的操作。");
NewsFactory newsFactory = Factory.getInstance().getNewsFactory();
newsFactory.editTop(newsID,top);
%>
<html>
<title>新闻级别修改成功</title>
<link rel="stylesheet" href="../inc/admin.css" type="text/css">
<BODY leftmargin="0" bottommargin="0" rightmargin="0" topmargin="0" marginheight="0" marginwidth="0" bgcolor="#DDEEFF">
<br><br>
<center>新闻级别修改成功。</center>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -