home *** CD-ROM | disk | FTP | other *** search
/ Australian Personal Computer 1999 April / APC443.iso / features / grpware / coldfus / coldfusi.exe / data1.cab / Documentation / snippets / cfapplet.cfm < prev    next >
Encoding:
Text File  |  1998-10-08  |  692 b   |  31 lines

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