AMPost.jsp revision 984ea967792540448d05fba2ac6fad5dadf91fd6
0N/A<%--
594N/A DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
0N/A
0N/A Copyright (c) 2006 Sun Microsystems Inc. All Rights Reserved
0N/A
0N/A The contents of this file are subject to the terms
0N/A of the Common Development and Distribution License
0N/A (the License). You may not use this file except in
0N/A compliance with the License.
0N/A
0N/A You can obtain a copy of the License at
0N/A https://opensso.dev.java.net/public/CDDLv1.0.html or
0N/A opensso/legal/CDDLv1.0.txt
0N/A See the License for the specific language governing
0N/A permission and limitations under the License.
0N/A
0N/A When distributing Covered Code, include this CDDL
0N/A Header Notice in each file and include the License file
0N/A at opensso/legal/CDDLv1.0.txt.
0N/A If applicable, add the following below the CDDL Header,
0N/A with the fields enclosed by brackets [] replaced by
0N/A your own identifying information:
0N/A "Portions Copyrighted [year] [name of copyright owner]"
0N/A
0N/A $Id: AMPost.jsp,v 1.2 2008/06/25 05:44:36 qcheng Exp $
0N/A
0N/A--%>
0N/A
0N/A
0N/A
0N/A
0N/A<html>
0N/A<%@page info="AMPost" language="java"%>
0N/A<%@taglib uri="/WEB-INF/jato.tld" prefix="jato"%>
0N/A<jato:useViewBean className="com.sun.identity.console.base.AMPostViewBean">
0N/A
0N/A<script language="javascript">
0N/A function doSubmit() {
0N/A var frm = document.forms[0];
0N/A frm.action = '<jato:text name="formAction" escape="false" />';
0N/A frm.submit();
0N/A }
0N/A</script>
0N/A
0N/A<body onLoad="doSubmit()">
0N/A <jato:form name="AMPost" defaultCommandChild="/g">
0N/A </jato:form>
0N/A</body>
0N/A</jato:useViewBean>
0N/A</html>
0N/A
0N/A
0N/A