home *** CD-ROM | disk | FTP | other *** search
- <%@ page language="java" import="
- java.util.*,
- com.jproxy.site.JSPRes,
- com.jproxy.site.JSPSession"
- errorPage="error-page.jsp"
- %>
-
- <jsp:useBean id="ses" scope="session" class="com.jproxy.site.JSPSession"/>
- <%
- if (!ses.isLoggedIn()) {
- %>
- <jsp:forward page="login.jsp">
- </jsp:forward>
- <%
- }
- ses.pc = pageContext;
-
- String msg = ses.getParameter("msg");
- String id = ses.getParameter("id");
- String key = ses.getParameter("key");
- String returnPage = ses.getParameter("return-page");
- %>
- <!-- HEADER -->
- <jsp:include page="header.jsp" flush="true">
- <jsp:param name="pageId" value="message_box"/>
- </jsp:include>
-
- <!-- MAIN PANEL -->
- <br>
- <br>
- <table class="h9Verdana" border="0" bgcolor="9c9cff" cellpadding="1" cellspacing="0">
- <tr>
- <td>
- Message Box
- </td>
- </tr>
- <tr>
- <td>
- <table class="h9Verdana" border="0" bgcolor="white" cellpadding="5" cellspacing="1">
- <tr class="h8Verdana">
- <td align="left">
- <%
- if(request.getParameter("key").trim().equalsIgnoreCase("sale-formula-not-found"))
- {
- %>
- Price information was not not found. Please relogin to ePotal.
- <%
- }
- if(request.getParameter("key").trim().equalsIgnoreCase("new-account"))
- {
- %>
- <br>
- Customer has been created successfuly.
- <%
- }
- if(request.getParameter("key").trim().equalsIgnoreCase("update-account"))
- {
- %>
- Customer profile has been updated successfuly.
- <%
- }
- if(request.getParameter("key").trim().equalsIgnoreCase("account-spell-error"))
- {
- %>
- There are some fileds that are either missing or failed validation.<br>
- Please examine the validation message and reenter the required information accordingly.
- <p>
- These validation errors were found on the form:
- <p>
- <%=msg%>
- <%
- }
- if(request.getParameter("key").trim().equalsIgnoreCase("account-error"))
- {
- %>
- There was an unexpected error reported while updating your account.
- <%
- }
- %>
-
- <%
- if(returnPage.length()>0)
- {
- %>
- <br><br>
- Please click <a class="h8VerdanaBold" href="<%=returnPage%>?command=refresh">here</a> to continue.
- <%
- }
- %>
- </td>
- </tr>
- </table>
- </td>
- </tr>
- </table>
- <!-- FOOTER -->
- <jsp:include page="footer.jsp" flush="true"/>
-