Hi,
Would you care to explain exactly what you are trying to do with this method?
The only way that you can get the variables to the error_details.cfm would be to send them through the query string when you build the iframe in 001_validate.cfm.
in 001.VALIDATE.cfm
<!--- here's a snippet that will retrieve all the submitted fields and query string data --->
<cfparam name="fieldnames" default="">
<cfparam name="query_string" default="">
<cfset urlparams = "">
<cfloop list=#fieldnames# index=key delimiters=",">
<cfset urlparams = urlparams & "&#key#=" & #evaluate("form." & key)#>
</cfloop>
<cfloop list="#query_string#" index=key delimiters="?,&">
<cfset urlparams = urlparams & "&" & key>
</cfloop>
<!--- end of snippet --->
<iframe id="Details" name="Details" frameborder="1" width="350" height="160"
src="Error_detail.cfm?urlp
Main Topics
Browse All Topics





by: campbelcPosted on 2004-07-14 at 11:51:44ID: 11552329
Is this on a site where I can see it in action?