aspx_beginners thread: Remember <form...
Hi folks,
You know how, with traditional ASP, you could have an ASP page say
test.asp with:
<form action="../test/test1.asp" method="post" id="form1" name="form1">
<input Type="text" id="txtTest" name="txtTest" >
<input type="submit" id="submit1" name="submit1" >
</form>
then on clicking the submit button IIS would send test1.asp.
How do you do that in aspx?
If I put the above html in a html page, then it works. That is it
navigates from test1.htm to test1.aspx but if I try to submit from
test.aspx to test1.aspx - no go.
regards
Pete