postsuccess.jsp

来自「tbuy1.1.5是在netbeans环境下用JSF技术编写的一个论坛tbuy1」· JSP 代码 · 共 49 行

JSP
49
字号
<%@page contentType="text/html" pageEncoding="UTF-8"%><%@taglib prefix="f" uri="http://java.sun.com/jsf/core"%><%@taglib prefix="h" uri="http://java.sun.com/jsf/html"%><%@taglib prefix="t" uri="http://myfaces.apache.org/tomahawk"%><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"   "http://www.w3.org/TR/html4/loose.dtd"><style type="text/css">   .tStyle1{       height: 200px;       width: 400px;       border: 1px solid gray;       padding: 5px;       margin-bottom:150px;   }</style><f:view locale="#{localeBean.locale}"><html>    <head>        <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">        <title>            <h:outputText value="发表主题成功"/>        </title>        <link rel="stylesheet" type="text/css" href="<%=request.getContextPath()%>/common/css/style.css"/>        <link rel="stylesheet" type="text/css" href="<%=request.getContextPath()%>/bbs/css/style.css"/>    </head>    <body>    <%@ include file="/common/header.jsp" %>    <%@ include file="/common/top.jsp"%>    <t:div style="text-align:center">        <t:div styleClass="tStyle1">            <t:div style="background:#F6F6F6;color:green;padding:10px;">                <h:outputText value="你的主题文章已经成功发表!"/>            </t:div>            <t:div style="margin-top:20px;">                <h:outputLink value="forums.faces">                    <h:outputText value="转到论坛主页"/>                </h:outputLink>            </t:div>            <t:div style="margin-top:20px;">                <h:outputLink value="post.faces">                    <h:outputText value="继续发表主题"/>                </h:outputLink>            </t:div>        </t:div>    </t:div>    <%@ include file="/common/footer.jsp" %>    </body></html></f:view>

⌨️ 快捷键说明

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