>Morning,
> 
>Having a brain freeze.
> 
>I want to send an entire set of form variables back to the previous page on
>the url string.
> 
>Obviously 
> 
>previous_page.cfm?formStructure=#Form# 
> 
>doesn't work. I can't for the life of me remember how to do this.
> 
>Cheers
> 
>Will

Will, the following technique would work, however, as mentioned, passing data 
via URL has its limit.

<form 
action="passFormViaURL.cfm?name=document.getElementId('yourName').innerHTML&email=document.getElementId('email').innerHTML"
 method="get">
Name: <input type="text" id="yourName" name="yourName"><br/>
Email: <input type="text" id="email" name="email">
<input type="submit" name="send" value="Submit">
</form>

Personally I'd prefer a more elegant approach of using ajax...

Don 

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;192386516;25150098;k

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:302161
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