home *** CD-ROM | disk | FTP | other *** search
/ bombers.k12.ar.us / bombers.k12.ar.us.tar / bombers.k12.ar.us / survey_unconfigured / DisplayPipeToken.asp < prev    next >
Text File  |  2006-10-25  |  3KB  |  87 lines

  1. <%
  2. '***********************************************************************
  3. '   Application: SelectSurveyASP Advanced v8.1.11
  4. '   Author: Aaron Baril for ClassApps.com
  5. '   Page Description: This page displays the pipe token for a given question.
  6. '
  7. '   COPYRIGHT NOTICE                                
  8. '
  9. '   See attached Software License Agreement
  10. '
  11. '   (c) Copyright 2002 - 2006 by ClassApps.com.  All rights reserved.
  12. '***********************************************************************
  13. %>
  14. <html>
  15. <head>
  16.     <title>Answer Piping</title>
  17.     <link rel="stylesheet" href="Resources/StyleSheet/SurveyStyle.css">
  18. </head>
  19. <body class="MainBodyStyle">
  20.  
  21. <a name="TopOfPage">
  22. <table border="0" height="100%" width="100%" cellpadding="0" cellspacing="0">
  23.     <tr>
  24.         <td valign="center" align="center">
  25.             <table width="450" border="0" align="center" cellpadding="0" cellspacing="0" class="DarkBlueBackgroundColor">
  26.                 <tr> 
  27.                     <td align="left" height="36" valign="bottom">
  28.                           <span class="H1HeadingStyle"><a name="skipnav" tabindex="1">Answer Piping</a></span>
  29.                     </td>
  30.                 </tr>
  31.             </table>
  32.             <table width="450" border="0" align="center" cellpadding="8" cellspacing="0" class="DarkBlueBackgroundColor">
  33.                 <tr> 
  34.                     <td align="center">
  35.                         <table width="434" border="0" cellpadding="7" cellspacing="0" class="MediumBlueBackgroundColor">
  36.                             <tr> 
  37.                                 <td align="center">
  38.                                     <table cellspacing="0" border="0" cellpadding="6" width="420" class="WhiteBackgroundColor">
  39.                                         <tr>
  40.                                             <td>
  41.                                                 <table border="0" cellpadding="3" cellspacing="3" height="125" width="100%">
  42.                                                     <tr>
  43.                                                         <td>
  44.                                                             <span class="Normal"><label for="txtPipeToken">To pipe the answer to this question to another question, 
  45.                                                             copy the text in the textbox below.</label>  Then, paste the copied text into the desired 
  46.                                                             location in a subsequent question, and the answer to this question will appear in 
  47.                                                             that location.<br></span>
  48.                                                         </td>
  49.                                                     </tr>
  50.                                                     <tr>
  51.                                                         <td>
  52.                                                             <textarea class="TextareaStyle" style="width:396px" name="txtPipeToken" id="txtPipeToken">###<%=Request.QueryString("ItemID")%>###</textarea>
  53.                                                         </td>
  54.                                                     </tr>
  55.                                                     <tr>
  56.                                                         <td align="right">
  57.                                                             <img onClick="javascript:window.close();" alt="Close" border="0" style="cursor:hand" src="Resources/Buttons/Close.gif">
  58.                                                         </td>
  59.                                                     </tr>
  60.                                                 </table>
  61.                                             </td>
  62.                                         </tr>
  63.                                     </table>
  64.                                 </td>
  65.                             </tr>
  66.                         </table>
  67.                     </td>
  68.                 </tr>
  69.             </table>
  70.             <table width="450" border="0" align="center" cellpadding="0" cellspacing="0" class="DarkBlueBackgroundColor">
  71.                 <tr> 
  72.                     <td align="center">
  73. <!--#Include File="Include/FooterInner_inc.asp"-->
  74.                     </td>
  75.                 </tr>
  76.             </table>
  77.         </td>
  78.     </tr>
  79. </table>
  80. </body>
  81. </html>
  82.  
  83. <%        
  84.     'Ensure that the web server returns the page
  85.     Response.Flush
  86. %>
  87.