home *** CD-ROM | disk | FTP | other *** search
/ Computer Shopper 139 / dpcs0999.iso / Web / CFserver / data1.cab / Administrator / include / errormessage.cfm (.txt) next >
Encoding:
ColdFusion Encrypted Template  |  1999-04-12  |  733 b   |  18 lines

  1. <!-------------------------- ERROR MESSAGING MODULE --------------------------
  2.     Provides for the display of consistent validation error messages.
  3.     
  4.     INPUTS: Error_Message    - The body of the error message to display.
  5. ------------------------------------------------------------------------------>
  6. <FORM>
  7. <CENTER>
  8.     <BLOCKQUOTE>
  9.     <HR SIZE=1 NOSHADE>
  10.     <FONT SIZE="-1" FACE="MS Sans Serif" COLOR="#FF0000">
  11.     <CFOUTPUT>#Error_Message#</CFOUTPUT>
  12.     </FONT>
  13.     <P><INPUT TYPE="button" VALUE="  Go Back   " onClick="history.go(-1)">
  14.     <HR SIZE=1 NOSHADE>
  15.     </BLOCKQUOTE>
  16. </CENTER>
  17. </FORM>        
  18.