SelectFormPage.jsp Sample
This topic inludes the source code for the SelectFormPage.jsp Sample.
Sample Location
This sample is located in the following directory in your WebLogic Workshop installation:
BEA_HOME/weblogic81/samples/workshop/SamplesApp/WebApp/handlingData/multipleForms/
Sample Source Code
01 <%@ page contentType="text/html;charset=UTF-8" language="java" %>
02 <%@ taglib uri="netui-tags-html.tld" prefix="netui" %>
03
04
05 <html>
06 <head>
07 <title>Multiple Forms Sample</title>
08 </head>
09 <body bgcolor="white">
10 <jsp:include page="/resources/jsp/header.jsp"/>
11
12 <h3>Multiple Forms Sample Home Page</h3>
13 <br>This sample shows a JSP page with multiple forms. You can choose to prefill the form fields
14 or leave the form fields blank.<br><br>
15
16 <netui:anchor action="goFormPageWithValues">Show the JSP page with prefilled form fields.</netui:anchor>
17 <br><br>
18 <netui:anchor action="goFormPageWithoutValues">Show the JSP with blank form fields.</netui:anchor>
19
20 </body>
21 </html>
|