Albion - The final page can only receive form variables. Even with the updated code you presented, it still would be sending URL variables to a template that only receives form variables.
Your code:
var1=<cfoutput>#FORM.something#</CFOUTPUT>
Concerning you second response about removing the form scope in the variable. It would be great if I could do that on the final page, but I can not edit the final page. Which limits me to only sending it form variables. Plus there is information that would be in the variable being sent that I would not want to display in a URL variable.
==========================================
bombboy - Your kind of in the right area. The processing page would need to send form fields, most likely hidden form fields, to the final page. If possible, I would like to avoid JavaScript to execute the Submit. It could be a problem if JavaScript was disabled.
CFHEADER would not do the job. It only deals with pre-defined header variables.
CFHTTP also would not do the job. While it would send the data to another page, it would not send the user to the same page at the same time. You could use a cflocation after the CFHTTP to send the user and the data to the same page, but that would send the user and the data to the same page at two different times.