accountsuccess.jsp

来自「Struts+Spring+Hibernate开发的BBS,功能很强大很完善」· JSP 代码 · 共 70 行

JSP
70
字号
<%@ page contentType="text/html;charset=ISO8859_1" %>
<%
/**
 *	$RCSfile: accountSuccess.jsp,v $
 *	$Revision: 1.2 $
 *	$Date: 2002/09/26 03:52:18 $
 */
%>

<%@ page import="com.jivesoftware.forum.*,
                 com.jivesoftware.forum.util.*"
	errorPage="error.jsp"
%>

<%@ include file="global.jsp" %>

<%  // Get parameters
    boolean redirect = ParamUtils.getBooleanParameter(request,"redirect");
    String where = ParamUtils.getParameter(request,"where");

    if (redirect) {
        if (where == null) {
            where = "index.jsp";
        }
        response.sendRedirect(where);
        return;
    }
%>

<%  String title = "论坛 - 创建帐号"; %>
<%@ 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") %>"
>首页</a>
&raquo;
<a href="index.jsp" title="返回论坛列表"
>论坛</a>
&raquo;
<a href="account.jsp"
>创建帐号</a>
</b>
</font>
<p>

<font size="-1" face="<%= JiveGlobals.getJiveProperty("skin.default.fontFace") %>">
<b>恭喜您!</b>
<br>
您的帐号已经成功的创建.您可以通过访问<a href="settings.jsp">用户设置</a>页面
编辑您的配置文件和帐号设置或者点击下面的按钮访问论坛
</font>

<p>

<center>
<form action="accountSuccess.jsp">
<input type="hidden" name="redirect" value="true">
<input type="hidden" name="where" value="index.jsp">
<input type="submit" value="论坛首页">
</form>
</center>

<br>

<%@ include file="footer.jsp" %>

⌨️ 快捷键说明

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