29 lines
1.2 KiB
Plaintext
29 lines
1.2 KiB
Plaintext
<%--------------------------------------------------------------------%>
|
|
<%-- Header file that writes the path based on here the user is in --%>
|
|
<%-- test. Also writes out the full path for the index.jsp page --%>
|
|
<%--------------------------------------------------------------------%>
|
|
<head>
|
|
<title>InterOp Test2</title>
|
|
</head>
|
|
|
|
<body>
|
|
<% if (request.getAttribute("position") != "Index") { %>
|
|
<h3>Interop Test2</h3>
|
|
<br/>
|
|
<% } %>
|
|
|
|
<% if (request.getAttribute("position") == "1") { %>
|
|
Start.jsp...
|
|
<%} else if (request.getAttribute("position") == "2") { %>
|
|
Start.jsp ... Jpf1.jpf/begin.do -> jpf1.jsp ...
|
|
<%} else if (request.getAttribute("position") == "3") { %>
|
|
Start.jsp ... Jpf1.jpf/begin.do -> jpf1.jsp -> /global/Global/toLegacy.do -> /gotoStrutsJSP.do -> Struts1.jsp ...
|
|
<% } else { %>
|
|
Start.jsp ... Jpf1.jpf/begin.do -> jpf1.jsp -> /global/Global/toLegacy.do -> /gotoStrutsJSP.do -> Struts1.jsp ...
|
|
gotoDone -> Done.jsp
|
|
<% }
|
|
if (request.getAttribute("position") != "Index") { %>
|
|
<hr width="95%"/>
|
|
<br/>
|
|
<% } %>
|