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