nothing wrong with that.
however, do you _need_ it in the request scope? and are you using
formURL2attributes?
if "no" and "yes", then this might be better:

<cfcase value="Message">
    <cfparam name="attributes.message" default="Thank You">
    <cfinclude template="dspMessage.cfm">
</cfcase>

Since the url.message will be copied into the attributes 'scope', you'll
just need to ammend your dspMessage.cfm to look there rather than the
request scope.

HTH
Bert


> -----Original Message-----
> From: Joseph Thompson [mailto:[EMAIL PROTECTED]]
> Sent: 26 July 2001 05:46
> To: Fusebox
> Subject: Sending a value to an "fuse action"
> 
> 
> Easy enough to do but... I am trying to do this the "standards" way.
> 
> I have a template that "logs-in" a user.  On success, I want 
> to direct them
> to a "generic" success page. On the dspRegister.cfm page I am using:
> 
> #self#?FuseAction=Message&message=Registered
> 
> to send them to the "dspMessage" page.
> 
> The #self # (index.cfm) page has this:
> 
>   <cfcase value="Message">
>    <cfparam name="message" default="Thank You">
>    <cfset Request.Message=Message>
>    <cfinclude template="dspMessage.cfm">
>   </cfcase>
> 
> This works great.  The dspMessage page recieves either the 
> default "Thank
> You" or whatever I sent to it from the login page (in this case
> "Registered")
> 
> Am I breaking any rules? is there another convention I should 
> be using?
> 
> Is it really this easy?
> 
> 
> 
> 
> 
>
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
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