I'm getting errors passing values from one form to another. I'd be glad if anybody could point out what I'm doing wrong..
I'm passing 'headline' to the second form and I've tried to use input type = 'hidden' to capture the value and send it to my asp page where I am sending the values to my database.
Here's the First Form:
<form action = "createBasic.asp" method = "post">
<input type="text" name="headline">
</form>
Here's the Second Form:
<form name = "theForm" method = "post" action = "createBasic.asp" enctype="multipart/form-data">
<input type="hidden" name="headline" value="<%=Request.Form("headline"
%>">
<input type="submit" value="Preview" >
</form>
Thank you for any help..
I'm passing 'headline' to the second form and I've tried to use input type = 'hidden' to capture the value and send it to my asp page where I am sending the values to my database.
Here's the First Form:
<form action = "createBasic.asp" method = "post">
<input type="text" name="headline">
</form>
Here's the Second Form:
<form name = "theForm" method = "post" action = "createBasic.asp" enctype="multipart/form-data">
<input type="hidden" name="headline" value="<%=Request.Form("headline"
<input type="submit" value="Preview" >
</form>
Thank you for any help..