I'm surprised you didn't get an error. ColdFusion will escape the first 
pound because it's doubled. The second single pound should have thrown 
an error because there's no other single pound to go with it.

#id# will tell ColdFusion to evaluate "id" as a variable.
##id will tell ColdFusion that you really just want to output a # in 
front of the string id. So you should end up with #id (which you are).

If your url is supposed to read as:

rotating_baby_image_preview.cfm?id=#id#&img=res&preview=1

then you will need to have "...?id=##id##&img..." in your code.

Hope that helps,
Chris


[EMAIL PROTECTED] wrote:
> All,
>
> I've got this form ...
>
> <FORM action="rotating_baby_image_preview.cfm?id=##id#&img=res&preview=1" 
> method="post" name="preview">
>
> but when the page processes, I get the URL ...
>
> rotating_baby_image_preview.cfm?id=#id&img=res&preview=1
>
> the 2nd "#" is missing after the id value
>
> D
>
> 

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
Create robust enterprise, web RIAs.
Upgrade & integrate Adobe Coldfusion MX7 with Flex 2
http://ad.doubleclick.net/clk;56760587;14748456;a?http://www.adobe.com/products/coldfusion/flex2/?sdid=LVNU

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:265687
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4

Reply via email to