I am currently using the following code, but I would rather have the cfoutput redirect to one web page and the cfelse redirect to another page. Is that possible?
<cfoutput>
<div align="right">#DateFormat (Now())# #TimeFormat(Now())# </div><br>
<br>
Thank you for your request #form.firstname#. We will process your request and contact you as soon as possible.<BR>
<br>
<div align="center"><a href="../home.html">Return to Homepage</a> </div>
</cfoutput>
<cfelse>
<H3>You are missing a required piece of information for this form to be processed.</H3>
<br>
Please <a href="javascript:history.go(-1)">Click here</a> to go back and complete
all fields marked with an asterisk(<font color="#FF0000">*</font>).
</CFIF>
<cfoutput>
<div align="right">#DateFormat (Now())# #TimeFormat(Now())# </div><br>
<br>
Thank you for your request #form.firstname#. We will process your request and contact you as soon as possible.<BR>
<br>
<div align="center"><a href="../home.html">Return to Homepage</a> </div>
</cfoutput>
<cfelse>
<H3>You are missing a required piece of information for this form to be processed.</H3>
<br>
Please <a href="javascript:history.go(-1)">Click here</a> to go back and complete
all fields marked with an asterisk(<font color="#FF0000">*</font>).
</CFIF>