Redirect to two separate pages in the same cfform
I'm a bit of a novice at this.Hoping someone can guide me on how to accomplish this. I have a simple selection list (below). If they user chooses the selection in red I want it to redirect them to a page other than the one in the cfform tag, but I can't figure out how to segregate the options within the cfform from the same list. Thanks in advance.
<cfform action="index2.cfm" method="POST">
<table align="center" width="475" border="0" cellpadding="1" cellspacing="0">
<tbody>
<tr>
<td><span class="label">Select Version:</span> </td>
<td>
<cfselect name = "UPVersion">
<option value=""></option>
<option value="66SP1">6.6 SP1x</option>
<option value="66SP2">6.6 SP2x</option>
<option value="701">7.0.1x</option>
</cfselect>
</td>
</tr>
<input type="hidden" name="gosearch" value="gosearch">
<input type="hidden" name="Rows" value="50">
<tr>
<td colspan="3" align="center"><input type="submit" name="Submit" value="[ search ]"> <input type="reset" name="reset" value="[ clear ]"></td>
</tr>
</tbody>
</table>
</cfform>
