I don't understand your question, but if you by chance mean
how do you use a form with fusebox, you just set a hidden
variable named fuseaction.  The wonderful FORMURL2ATTRIBUTES
tag will make a copy of all url and form variables to 
the attributes scope, so

<a href="index.cfm?fuseaction=foo&bar=1">click here</a>

would yield the same result as:

<form action="index.cfm" method="whatever">
<input type="hidden" name="fuseaction" value="foo">
<input type="hidden" name="bar" value="1">
<input type="submit" value="click here">
</form>

__
 Erik Voldengen     6740 N Oracle Road, Ste 100
 Lead Developer     Tucson, Arizona 85704
 HMweb              520-742-2611 ext. 111
                    www.HMweb.com


> -----Original Message-----
> From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]
> Sent: Wednesday, November 29, 2000 4:24 PM
> To: Fusebox
> Subject: Cfform help
> 
> 
> I love the fusebox methodology but I am really strugling with passing
> variables through forms.  How can I send a <Cfform> through a 
> Fuseaction?
> Is this possible?
> 
> Thanks,
> Rich
> 
> 
> 
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/[email protected]/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists

Reply via email to