home *** CD-ROM | disk | FTP | other *** search
/ Internet Pratica / IPRAT_01.iso / ASP / ASPFusion_Basic_Suite / examples / cf / advregistry / act_set.cfm < prev    next >
Encoding:
ColdFusion Markup Language  |  2001-03-15  |  529 b   |  19 lines

  1. <html>
  2. <head>
  3.     <title>AdvRegistry Component</title>
  4. </head>
  5. <body>
  6. <cfobject class="AdvRegistry.Registry" action="CREATE" name="AdvRegistry">
  7. <cfset AdvRegistry.Entry = #Form.Entry#>
  8. <cfset AdvRegistry.Type = #Form.Type#>
  9. <cfset AdvRegistry.Value = #Form.Value#>
  10. <cfset temp = AdvRegistry.Set(#Form.Branch#)>
  11. <cfif #AdvRegistry.IsError# Eq 1>
  12.     Error: <cfoutput>#AdvRegistry.ErrorReason#</cfoutput> <br>
  13. <cfelse>
  14.     <cfoutput>Successfully set</cfoutput> <br>
  15. </cfif>
  16. <A HREF="dsp_set.htm">Back</A>
  17. </body>
  18. </html>
  19.