SpecifyMaze.html Sample

This topic inludes the source code for the SpecifyMaze.html Sample.

Sample Location

This sample is located in the following directory in your WebLogic Workshop installation:

BEA_HOME/weblogic81/samples/workshop/SamplesApp/WebApp/handlingData/traditional_vs_pageFlow_webApp/traditional_webApp/

Sample Source Code

<html>
<body>

    <h1>Traditional JSP Version: specifyMaze.html</h1>
    
    <h2>Display Text Maze</h2>
    <form action="mazeDisplay.jsp" method="post">
        Enter maze size: <br>
        Rows: <input type="text" name="rows"><br>
        Cols: <input type="text" name="columns"><br>
        <input type="submit" 
               name="printRandomMaze" 
               value="Submit">
    </form>
    
    <h2>Display Graphical Maze</h2>
    <form action="mazeDisplay.jsp" method="post">
        Enter maze size: <br>
        Rows: <input type="text" name="rows"><br>
        Cols: <input type="text" name="columns"><br>
        <input type="submit" 
               name="getRandomMaze" 
               value="Submit">
    </form>

    <hr>
    <a href="/WebApp/handlingData/traditional_vs_pageFlow_webApp/traditional_vs_pageFlow_webAppController.jpf">
    Back to Traditional JSP Applications Vs. Page Flow Applications Sample</a>
</body>
</html>