I have a page that users submit information on.
Their are 17 weeks, so i build hyperlinks with this code.
</strong><br />
<div align="left"></div>
<div align="left"><strong>Weeks:
<% for i = 1 to NumberOfWeeks() %>
<a href="<% = Request.ServerVariables("SCRIPT_NAME") %>?week=<% = i %>">
<% = i %>
</a>
<% next %>
</strong></div>
when the user clicks the link the url will display
i then want to response.redirect after the submit button is clicked passing the parameter to a page called confirm.asp.
I need to have a link on the confirm that would take the user back to
or what ever week was selected.
is this possible?
Their are 17 weeks, so i build hyperlinks with this code.
</strong><br />
<div align="left"></div>
<div align="left"><strong>Weeks:
<% for i = 1 to NumberOfWeeks() %>
<a href="<% = Request.ServerVariables("SCRIPT_NAME") %>?week=<% = i %>">
<% = i %>
</a>
<% next %>
</strong></div>
when the user clicks the link the url will display
i then want to response.redirect after the submit button is clicked passing the parameter to a page called confirm.asp.
I need to have a link on the confirm that would take the user back to
or what ever week was selected.
is this possible?