Advertisement
ratclma

post_response_template.xml file used by MT-Access-Driver

Aug 11th, 2014
215
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.00 KB | None | 0 0
  1. POST_RESPONSE_TEMPLATE.XML
  2.  
  3. <!--
  4. This is a sample web page template for use with
  5. the DirXML Manual Task Service Driver.
  6.  
  7. This template is designed to be used to create the
  8. response web page displayed after a HTTP POST.
  9. -->
  10. <html xmlns:form="http://www.novell.com/dirxml/manualtask/form">
  11. <head>
  12. <title>Result of post for $subject-name$</title>
  13. <style type="text/css">
  14. table.formtable {align: center}
  15. </style>
  16. </head>
  17. <body>
  18. <link href="default.css" rel="stylesheet" type="text/css"/>
  19. <br/><br/><br/><br/>
  20. <img src="logo.gif" alt="Logo" width="265" height="110"/>
  21. <br/><br/><br/><br/>
  22. <table class="formtable" cellpadding="8" cellspacing="10" border="1" align="center">
  23. <tr>
  24. <td>
  25. $subject-name$ : DirXML reported status = $post-status$
  26. </td>
  27. </tr>
  28. <form:if-item-exists name="post-status-message">
  29. <tr>
  30. <td>
  31. Status message was: $post-status-message$
  32. </td>
  33. </tr>
  34. </form:if-item-exists>
  35. </table>
  36. </body>
  37. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement