tdmcginley

startInformation_working.jsp

May 16th, 2011
152
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.02 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="beginQuestions">
  14. <table class="layout" width="400">
  15. <tr>
  16. <td colspan="2">
  17. <input type='hidden' name=formId value='<s:property value="selectedForm.id" />' />
  18. <s:textarea name="selectedForm.information" cols="100" rows="30"/>
  19. </td>
  20. </tr>
  21. <tr>
  22. <td>
  23. <s:submit action="Listing" value="Cancel"
  24. onclick="form.onsubmit=null" align="left"/>
  25. </td>
  26. <td>
  27. <s:submit type="submit" value="Begin" align="right"/>
  28. </td>
  29. </tr>
  30. </table>
  31. </s:form>
  32. </body>
  33. </html>
Advertisement
Add Comment
Please, Sign In to add comment