Problem:
I think I have to send the pressed button parameter and the selected
product category as url parameters (because at the second page, when I
have to refresh the table and thus, the whole page, I will have to
access to the first page value (#form.Submit#) and these values will
not be available anymore. But how do I pass these 2 parameters in the
URL.
For example:
<select name="family">
<option value="None_Selected"></option>
...
</select>
...
<form
action="SecondPage.cfm?ProductFamily=#form.family#&PressedButton=A"
method="post">
<input name="Submit" type="submit" value="A">
</form>
<form
action="SecondPage.cfm.cfm?ProductFamily=#form.family#&PressedButton=B"
method="post">
<input name="Submit" type="submit" value="B">
</form>
<form
action="SecondPage.cfm?ProductFamily=#form.family#&PressedButton=C"
method="post">
<input name="Submit" type="submit" value="C">
</form>
In the second page, how can I store these url parameters and use them
as variables?
Can you check this code, because it doesn't work at all. I don't want
to use any script, just HTML.