accountsuccess.jsp
来自「Jive是基于JSP/JAVA技术构架的一个大型BBS论坛系统,这是Jive论坛」· JSP 代码 · 共 70 行
JSP
70 行
<%/** * $RCSfile: accountSuccess.jsp,v $ * $Revision: 1.4 $ * $Date: 2002/04/30 14:41:54 $ */%><%@ page import="com.jivesoftware.forum.*, com.jivesoftware.forum.util.*" errorPage="error.jsp"%><%@ include file="global.jsp" %><% // Get parameters boolean redirect = ParamUtils.getBooleanParameter(request,"redirect"); boolean index = request.getParameter("index") != null; boolean prefs = request.getParameter("prefs") != null; if (redirect) { if (prefs && pageUser != null) { response.sendRedirect("settings.jsp?user="+pageUser.getID()); } else { response.sendRedirect("index.jsp"); } return; }%><% String title = SkinUtils.getLocalizedString("skin.default.accountsuccess.title",locale); %><%@ include file="header.jsp" %><% out.flush(); %><%-- Breadcrumbs --%> <font face="<%= JiveGlobals.getJiveProperty("skin.default.fontFace") %>" color="<%= JiveGlobals.getJiveProperty("skin.default.linkColor") %>"><b><a href="<%= JiveGlobals.getJiveProperty("skin.default.homeURL") %>"><%= SkinUtils.getLocalizedString("skin.default.global.home",locale) %></a>»<a href="index.jsp" title="<%= SkinUtils.getLocalizedString("skin.default.global.go_back_to_forum_list",locale) %>"><%= SkinUtils.getLocalizedString("skin.default.global.forums",locale) %></a>»<a href="account.jsp"><%= SkinUtils.getLocalizedString("skin.default.global.create_account",locale) %></a></b></font><p><font size="<%= JiveGlobals.getJiveProperty("skin.default.fontSize") %>" face="<%= JiveGlobals.getJiveProperty("skin.default.fontFace") %>"><b><%= SkinUtils.getLocalizedString("skin.default.accountsuccess.success",locale) %></b><br><%= SkinUtils.getLocalizedString("skin.default.accountsuccess.created",locale) %></font><p><center><form action="accountSuccess.jsp"><input type="hidden" name="redirect" value="true"><input type="submit" name="index" value="<%= SkinUtils.getLocalizedString("skin.default.accountsuccess.homepage",locale) %>"><input type="submit" name="prefs" value="<%= SkinUtils.getLocalizedString("skin.default.global.your_preferences",locale) %>"></form></center><br><%@ include file="footer.jsp" %>
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?