S
Scott Durrett
I have 2 pages. Page1 is a .html page with a form, hidden input, and a
submit button. I have the action set to Post.
<form id="form1" action="paymentcatch.aspx" method="post">
<input id="wtf" type="text" value="thisisnotworking" />
<input id="Submit1" type="submit" value="submit" />
</form>
Page 2 is ASPX (c#). On the page load I want to read the value from the
hidden input on Page1.
I'm trying to read the hidden input like this: Reques.Form["wtf"]
Everytime the result is null. Has anyone else had this issue?
Thanks In Advance
Scott
submit button. I have the action set to Post.
<form id="form1" action="paymentcatch.aspx" method="post">
<input id="wtf" type="text" value="thisisnotworking" />
<input id="Submit1" type="submit" value="submit" />
</form>
Page 2 is ASPX (c#). On the page load I want to read the value from the
hidden input on Page1.
I'm trying to read the hidden input like this: Reques.Form["wtf"]
Everytime the result is null. Has anyone else had this issue?
Thanks In Advance
Scott