userconfig_do.jsp

来自「一个用java编写的功能强大的OA系统」· JSP 代码 · 共 82 行

JSP
82
字号
<%@ page contentType="text/html;charset=utf-8"%>
<%@ page import="cn.js.fan.util.*"%>
<%@ page import="cn.js.fan.web.*"%>
<%@ page import="com.redmoon.blog.*"%>
<%@ taglib uri="/WEB-INF/tlds/LabelTag.tld" prefix="lt" %>
<html>
<head>
<%
String userstr = SkinUtil.LoadString(request,"res.label.blog.user.userconfig", "my_blog");
userstr = StrUtil.format(userstr, new Object[] {Global.AppName});
%>
<title><%=userstr%></title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<LINK href="../../common.css" type=text/css rel=stylesheet>
</head>
<body>
<%
String op = ParamUtil.get(request, "op");
%>
<%if (op.equals("add")) {%>
<%@ include file="../../forum/inc/header.jsp"%>
<%}%>
<jsp:useBean id="StrUtil" scope="page" class="cn.js.fan.util.StrUtil"/>
<jsp:useBean id="privilege" scope="page" class="com.redmoon.forum.Privilege"/>
<p>&nbsp;</p>
<%
if (!Privilege.isUserLogin(request)) {
	out.print(StrUtil.Alert_Back(SkinUtil.LoadString(request, "err_not_login")));
	return;
}
String userName = privilege.getUser(request);
UserConfigDb ucd = new UserConfigDb();
long blogId = ucd.getBlogIdByUserName(userName);
if (op.equals("add")) {
	int blogType = ParamUtil.getInt(request, "blogType");
	if (blogType==UserConfigDb.TYPE_PERSON) {
		if (blogId!=UserConfigDb.NO_BLOG) {
			out.print(StrUtil.Alert_Back(SkinUtil.LoadString(request,"res.label.blog.user.userconfig", "activate_blog")));
			return;
		}
	}
}

if (op.equals("add")) {
	UserConfigMgr ucm = new UserConfigMgr();
	boolean re = false;
	try {
		re = ucm.create(request);
	}
	catch (ErrMsgException e) {
		out.print(StrUtil.Alert_Back(e.getMessage()));
		return;
	}
	if (re) {
		blogId = ucd.getBlogIdByUserName(userName);
		out.print(StrUtil.Alert_Redirect(SkinUtil.LoadString(request,"res.label.blog.user.userconfig", "activate_success"), "../myblog.jsp?blogId=" + ucm.getBlogId()));
	}
	else
		out.print(StrUtil.Alert_Back(SkinUtil.LoadString(request,"res.label.blog.user.userconfig", "activate_fail")));
}
if (op.equals("modify")) {
	UserConfigMgr ucm = new UserConfigMgr();
	boolean re = false;
	try {
		re = ucm.modify(request);
	}
	catch (ErrMsgException e) {
		out.print(StrUtil.Alert_Back(e.getMessage()));
		return;
	}
	if (re) {
		out.print(StrUtil.Alert_Redirect(SkinUtil.LoadString(request, "info_op_success"), "userconfig_edit.jsp?blogId=" + blogId));
	}
	else
		out.print(StrUtil.Alert_Back(SkinUtil.LoadString(request, "info_op_fail")));
}
%>
<%if (op.equals("add")) {%>
<%@ include file="../../forum/inc/footer.jsp"%>
<%}%>
</body>
</html>

⌨️ 快捷键说明

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