Got a problem with the following code:
<form name="form1" method="post" action="resp_update.asp?action=edit&concernid=" <%concernid%>>
<table width="350" border="0" cellspacing="0" cellpadding="0">
<tr>
<td>Enter Concern ID </td>
<td><input name="concernid" type="text" id="concernid"></td>
<% concernid=Request.Form(txtConID)%>
<td><input type="submit" name="Submit" value="Submit"></td>
</tr>
</table>
</form>
I want to post to resp_update and run an edit action with a certain id number, but all i get is Type mismatch: 'concernid'
Any ideas would be appreciated.
<form name="form1" method="post" action="resp_update.asp?action=edit&concernid=" <%concernid%>>
<table width="350" border="0" cellspacing="0" cellpadding="0">
<tr>
<td>Enter Concern ID </td>
<td><input name="concernid" type="text" id="concernid"></td>
<% concernid=Request.Form(txtConID)%>
<td><input type="submit" name="Submit" value="Submit"></td>
</tr>
</table>
</form>
I want to post to resp_update and run an edit action with a certain id number, but all i get is Type mismatch: 'concernid'
Any ideas would be appreciated.