i've a req where i need to enter a value in an input box and then send it as a parameter to the link. but it is not taking it. the following is the code iam using
the following is th code bit
Code:
<body>
<form action="/code.do" name="code">
<table>
<tr>
<TD>REGION</TD>
<TD>
<input type="text" name="Region">
<a href="fipses.do?code=document.code.Region.value&event=Report" onClick="returnParam()">Report</a></TD>
</tr>
</table>
</form>
</body> my idea is to take 'document.code.Region.value' as parameter. But it is taking
the whole name itself instead of value.
How to accomplish this. Help please