programmher
Programmer
Is there any way to preserve form A's values when I get to it by using a "back" button on form B? I cannot use cookies.
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
<CFPARAM name="FORM.variable1" default="">
<CFPARAM name="FORM.variable2" default="">
:
<cfoutput>
<input type="text" name="variable1" value="#FORM.variable1#"><br />
<input type="text" name="variable2" value="#FORM.variable2#">
</cfoutput>
<input type="text" name="variable1" value="#Replace(FORM.variable1,",","","ALL")#">