gradinumcp
IS-IT--Management
Hi I have 3 pages: Page1.asp, Page2.asp and Page3.asp.
On Page1.asp
<A href="Page2.asp?loannum=<%=RS("loannum")%>">Send to Page2
On Page2.asp
I have an onlick to this javascript:
<SCRIPT LANGUAGE="JAVASCRIPT">
<!--
function Check()
{
window.open("Page3.asp?loannum=<%=request("Loannum")%>", target="_main");
window.location.reload();
}
//-->
</SCRIPT>
On Page3.asp
I am trying response.redirect ("page1.asp") and it does not work atall. Page 3 just as insert statements and basically nothing to display.
All its doing right now is going from page1 to page2 smoothly. From page2 to page3 also goes and it executes the insert statements on page3 and just refreshes. I want it to instead execute Page3 and go to page 1...
Any clues???
On Page1.asp
<A href="Page2.asp?loannum=<%=RS("loannum")%>">Send to Page2
On Page2.asp
I have an onlick to this javascript:
<SCRIPT LANGUAGE="JAVASCRIPT">
<!--
function Check()
{
window.open("Page3.asp?loannum=<%=request("Loannum")%>", target="_main");
window.location.reload();
}
//-->
</SCRIPT>
On Page3.asp
I am trying response.redirect ("page1.asp") and it does not work atall. Page 3 just as insert statements and basically nothing to display.
All its doing right now is going from page1 to page2 smoothly. From page2 to page3 also goes and it executes the insert statements on page3 and just refreshes. I want it to instead execute Page3 and go to page 1...
Any clues???