12345678910111213141516171819202122232425262728293031323334353637 |
- <%@ page language="java" contentType="text/html; charset=UTF-8"%>
- <%@ include file="/base.jsp" %>
- <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
- <html>
- <%
- response.setHeader("Cache-Control","no-store");
- response.setHeader("Pragrma","no-cache");
- response.setDateHeader("Expires",0);
- %>
- <head>
- <title>操作成功</title>
- <script type="text/javascript" src="${ctximg}/static/common/jquery-1.11.1.min.js?v=<%=version%>"></script>
- <script type="text/javascript">
- </script>
- </head>
- <body style="background: #F5F5F5;">
- <table width="100%" cellspacing="0" cellpadding="0" border="0" class="table-form">
- <c:if test="${msg!=null&&msg!='' }">
- <tbody>
- <tr>
- <th ><span>${msg}<tt class="c_666 ml20 fsize12"></tt></span></th>
- <td><input type="button" value="返回" onclick="history.go(-1)" class="btn btn-blue"/></td>
- </tr>
- </tbody>
- </c:if>
- <c:if test="${msg==null||msg=='' }">
- <tbody>
- <tr>
- <th ><span>操作成功!<tt class="c_666 ml20 fsize12"></tt></span></th>
- <td><input type="button" value="返回" onclick="history.go(-1)" class="btn btn-blue"/></td>
- </tr>
- </tbody>
- </c:if>
- </table>
- </body>
- </html>
|