suc.jsp
上传用户:lm2018
上传日期:2015-12-12
资源大小:30449k
文件大小:2k
源码类别:

Jsp/Servlet

开发平台:

Java

  1. <%@ page language="java" pageEncoding="gbk"%>
  2. <%@ taglib uri="http://struts.apache.org/tags-bean" prefix="bean" %>
  3. <%@ taglib uri="http://struts.apache.org/tags-html" prefix="html" %>
  4. <%@ taglib uri="http://struts.apache.org/tags-logic" prefix="logic" %>
  5. <%@ taglib uri="http://struts.apache.org/tags-tiles" prefix="tiles" %>
  6. <%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%>
  7. <html:html >
  8.   <head>
  9.   </head>
  10.   
  11.   <body>
  12.     <c:if var="temp" test="${requestScope.task=='sendsuc'}">
  13.      <h1 align="center">邮件发送成功</h1>
  14.       <div align="center"><a href="${pageContext.request.contextPath}/email.do?method=receiveBox&emailtype=0&receiveid=2">返回邮件箱</a></div>
  15.     </c:if>
  16.     
  17.     <c:if var="temp" test="${requestScope.task=='savesuc'}">
  18.      <h1 align="center">邮件保存成功</h1>
  19.       <div align="center"><a href="${pageContext.request.contextPath}/email.do?method=receiveBox&emailtype=0&receiveid=2">返回邮件箱</a></div>
  20.     </c:if>
  21.     
  22.     
  23.     <c:if var="temp" test="${requestScope.task=='deltorubsuc'}">
  24.      <h1 align="center">邮件已经转移到垃圾箱</h1>
  25.       <div align="center"><a href="${pageContext.request.contextPath}/email.do?method=receiveBox&emailtype=0&receiveid=2">返回邮件箱</a></div>
  26.     </c:if>
  27.    
  28.    
  29.     <c:if var="temp" test="${requestScope.task=='delforeversuc'}">
  30.      <h1 align="center">邮件删除成功</h1>
  31.       <div align="center"><a href="${pageContext.request.contextPath}/email.do?method=receiveBox&emailtype=0&receiveid=2">返回邮件箱</a></div>
  32.     </c:if>
  33.     
  34.     <c:if var="temp" test="${requestScope.task=='toService'}">
  35.      <h1 align="center">邮件移动成功</h1>
  36.       <div align="center"><a href="${pageContext.request.contextPath}/email.do?method=receiveBox&emailtype=0&receiveid=2">返回邮件箱</a></div>
  37.     </c:if>
  38.     <c:if var="temp" test="${requestScope.task=='sendtoorhersuc'}">
  39.      <h1 align="center">邮件转发成功</h1>
  40.       <div align="center"><a href="${pageContext.request.contextPath}/email.do?method=receiveBox&emailtype=0&receiveid=2">返回邮件箱</a></div>
  41.     </c:if>
  42.     
  43.     
  44.     
  45.     
  46.     
  47.   </body>
  48. </html:html>