mili
07-22-2003, 08:02 PM
I have a table with two cells - price & rate.
When I click on rate, I should pass the input hidden variable from price and when I click on price, I should pass the input hidden variable from rates.How can I do this?
Below is my code.
thanks!
<html>
<head>
<title>Untitled</title>
</head>
<body>
<table>
<tr>
<form name="price" method="post" action="/web/workflow?TableName=price">
<input type="hidden" value="2m">
<td>
<a href="#" onclick="">Price</a>
</td>
</form>
<form name="rate" method="post" action="/web/workflow?TableName=rates">
<input type="hidden" value="0.2">
<td>
<a href="#" onclick="">Rates</a>
</td>
</form>
</tr>
</table>
</body>
</html>
When I click on rate, I should pass the input hidden variable from price and when I click on price, I should pass the input hidden variable from rates.How can I do this?
Below is my code.
thanks!
<html>
<head>
<title>Untitled</title>
</head>
<body>
<table>
<tr>
<form name="price" method="post" action="/web/workflow?TableName=price">
<input type="hidden" value="2m">
<td>
<a href="#" onclick="">Price</a>
</td>
</form>
<form name="rate" method="post" action="/web/workflow?TableName=rates">
<input type="hidden" value="0.2">
<td>
<a href="#" onclick="">Rates</a>
</td>
</form>
</tr>
</table>
</body>
</html>