home *** CD-ROM | disk | FTP | other *** search
/ Chip 2002 February / CHIPCD_02_2002.iso / Internet / Macromedia ColdFusion Server 5 / coldfusion-50-win-us.exe / data1.cab / Examples / CFDOCS / snippets / cfapplet.cfm < prev    next >
Encoding:
Text File  |  2001-06-13  |  754 b   |  32 lines

  1. <!--- This example shows the use of CFAPPLET --->
  2.  
  3. <HTML>
  4.  
  5. <HEAD>
  6. <TITLE>CFAPPLET Example</TITLE>
  7. </HEAD>
  8.  
  9. <BASEFONT FACE="Arial, Helvetica" SIZE=2>
  10. <BODY  bgcolor="#FFFFD5">
  11.  
  12. <H3>CFAPPLET Example</H3>
  13.  
  14. <P>Used in a CFFORM, CFAPPLET allows you to reference
  15. custom Java applets that have been previously registered
  16. using the Cold Fusion Administrator.
  17.  
  18. <P>To register a Java applet, open the Cold Fusion Administrator
  19. and click the "Applets" link under the "extensions" section.
  20.  
  21. <P>This example applet copies text that you type into 
  22. a form.  Type some text, and then click "copy" to see
  23. the copied text.
  24.  
  25. <CFFORM ACTION="cfapplet.cfm">
  26. <CFAPPLET appletsource="copytext" name="copytext">
  27. </CFFORM>
  28.  
  29. </BODY>
  30.  
  31. </HTML>       
  32.