I'm not 100% sure I am following what you are saying, but & in the URL
itself (e.g. the browser's address bar) should never work.  If it appears to
be working, my guess is that the 'propid' is being "passed" via the session,
which is the default behavior on an <result /> redirect.

Worded another way, when the browser is redirected on a <result />, the
values currently in the event are "remembered" via the session scope only
long enough for the redirect to occur.  Once the new page loads, those
values are long gone.  Because of the 'propid' being "remembered", it
appears to be working for you.  However, since there is an &amp; in the URL,
a page refresh does not "work", because &amp; is not permitted in the URL,
and therefore the 'propid' does not exist in the URL.

HTH


On Wed, Aug 17, 2011 at 11:06 PM, Irvin Wilson <[email protected]> wrote:

> Also should note that I'm testing by having a message for "addrent"
> that goes to controller function that has
>
>                <cfargument name="event" type="any">
>                <cfset var PropID = arguments.event.getvalue("propid") />
>
> I then cfoutput PropID.
>
> --
> Model-Glue Sites:
> Home Page: http://www.model-glue.com
> Documentation: http://docs.model-glue.com
> Bug Tracker: http://bugs.model-glue.com
> Blog: http://www.model-glue.com/blog
>
> You received this message because you are subscribed to the Google
> Groups "model-glue" group.
> To post to this group, send email to [email protected]
> To unsubscribe from this group, send email to
> [email protected]
> For more options, visit this group at
> http://groups.google.com/group/model-glue?hl=en
>

-- 
Model-Glue Sites:
Home Page: http://www.model-glue.com
Documentation: http://docs.model-glue.com
Bug Tracker: http://bugs.model-glue.com
Blog: http://www.model-glue.com/blog

You received this message because you are subscribed to the Google
Groups "model-glue" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/model-glue?hl=en

Reply via email to