tdmcginley

startInformation.jsp

May 13th, 2011
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.29 KB | None | 0 0
  1. <%@ taglib prefix="s" uri="/struts-tags" %>
  2. <%@ page language="java" contentType="text/html; charset=ISO-8859-1"
  3. pageEncoding="ISO-8859-1"%>
  4.  
  5. <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
  6. <html>
  7. <head>
  8. <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
  9. <title>Starting Information - <s:property value="selectedForm.name" /></title>
  10. </head>
  11. <LINK REL=StyleSheet HREF="/assets/iunstyle.css" TITLE="iunstyle">
  12. <body>
  13. <%-- <s:form action="Questions"> --%>
  14. <s:form action="beginQuestions">
  15. <table class="layout" width="400">
  16. <tr>
  17. <td>
  18. <input type='hidden' name=form_id value='<s:property value="selectedForm.id" />' />
  19. <fieldset>
  20. <br />
  21. <b>Instructions go here!</b>
  22. Id: <s:property value="selectedForm.id" />
  23. Name: <s:property value="selectedForm.name" />
  24. <br/>
  25. <br/>
  26. <s:property value="selectedForm.information" />
  27. </fieldset>
  28. </td>
  29. </tr>
  30. <tr>
  31. <td>
  32. <br />
  33. </td>
  34. </tr>
  35. <tr>
  36. <td align="left" >
  37. <s:submit action="Listing" value="Cancel" name="Cancel"
  38. onclick="form.onsubmit=null" align="left"/>
  39. <s:submit type="submit" value="Begin" align="right"/>
  40. </td>
  41. </tr>
  42. </table>
  43. </s:form>
  44. </body>
  45. </html>
Advertisement
Add Comment
Please, Sign In to add comment