I have a simple html form contained in an asp page because I need to get info from the database to display the form. However, when I try to submit the form:
<form action="nextPage.asp" method=post>
some textboxes and listboxes
submit button
it just keeps sending it to the same page. Is it possible to pass a form in asp? If not does anyone have any suggestions of how to get this info from one asp page to the next? Thanks.
<form action="nextPage.asp" method=post>
some textboxes and listboxes
submit button
it just keeps sending it to the same page. Is it possible to pass a form in asp? If not does anyone have any suggestions of how to get this info from one asp page to the next? Thanks.