B
Bruce A. Julseth
I have a FrontPage developed page where I'm using JavaScript for client side
code.
After the user enters the data, he clicks on a submit button with following
code.
<input type="submit" value="Submit" name="Make_Reservation"
onclick="MakeReservation()">
Function "MakeReservation" validates the data. If validation is successful,
the last statement in this function is:
window.location.href = "./SaveReservation.php";
The routine, "SaveReservation.php" is never loaded. I have tested the
SaveReservation.php routine directly from the URL Address line and it work
correctly.
What am I missing on trying to pass control to "SaveReservation.php."
Thanks
Bruce
code.
After the user enters the data, he clicks on a submit button with following
code.
<input type="submit" value="Submit" name="Make_Reservation"
onclick="MakeReservation()">
Function "MakeReservation" validates the data. If validation is successful,
the last statement in this function is:
window.location.href = "./SaveReservation.php";
The routine, "SaveReservation.php" is never loaded. I have tested the
SaveReservation.php routine directly from the URL Address line and it work
correctly.
What am I missing on trying to pass control to "SaveReservation.php."
Thanks
Bruce