home *** CD-ROM | disk | FTP | other *** search
/ PC Online 1999 November / PCONLINE_11_99.ISO / filesbbs / OS2 / APCHSSL2.ZIP / OS2HTTPD / public / htdocs / gsp / inc / inc.gsp < prev   
Encoding:
Text File  |  1999-02-01  |  738 b   |  31 lines

  1. <html>
  2. <body>
  3. <h1>Include Test</h1>
  4.  
  5.  <form method="post" action="inc.gsp">
  6.  
  7.   <input type="radio" name="template" value="1">1
  8.   <input type="radio" name="template" value="2">2
  9.  
  10.   <p>
  11.  
  12.   <input type="submit">
  13.   </form>
  14.  
  15. <java>
  16.   //
  17.   // note, these assume that the file is in a directory "/examples/inc"
  18.   // off the doc root.  If that's not the case, please edit the paths
  19.   // below to get this working
  20.  
  21.   Form form = request.getForm();
  22.   if(form.getValue("template", false).equals("1")) {
  23.     application.renderTemplate(request, response, "/examples/inc/inc_1.gsp");
  24.   }
  25.   else if(form.getValue("template", false).equals("2")) {
  26.     application.renderTemplate(request, response, "/examples/inc/inc_2.gsp");
  27.   }
  28. </java>
  29.  
  30. </body>
  31. </html>