I'm trying to have a situation where a asp value is displayed in a box on a form, if there is no value in the database, then a value can be entered, then a link can be clicked and the value passed to the next page.
Is this possible ? as my value is not being passed.
I need it to be passed to the next page so that i can enter it into the database there (if a new value is given), and then on that page i can always select it out of the database with ease.
eg : (the value i'm trying to pass is in textbox "Declined"
<tr>
<td><input type="text" name="Declined" value="<%=RS("Declined"%>"></td>
</tr>
<tr bgcolor="cccccc">
<td> </td>
<td>A class="small" HREF="../Forms/SendMailForm3.asp?MailID=D">Click here to Decline</A></td>
</tr>
Is this possible ? as my value is not being passed.
I need it to be passed to the next page so that i can enter it into the database there (if a new value is given), and then on that page i can always select it out of the database with ease.
eg : (the value i'm trying to pass is in textbox "Declined"
<tr>
<td><input type="text" name="Declined" value="<%=RS("Declined"%>"></td>
</tr>
<tr bgcolor="cccccc">
<td> </td>
<td>A class="small" HREF="../Forms/SendMailForm3.asp?MailID=D">Click here to Decline</A></td>
</tr>