L
Larry
I have a web from that based on the user's response needs to go to a web
folder set up with SSL. My problem is that when the redirect is executed I
get a "page can not be displayed" error on the browser.
The destination page had been tested prior to switching on the SSL
requirement for the subdirectory so I'm pretty sure the page(s) works. Any
ideas what I've done wrong or what I need to try to get it working?
The flow is from an HTML form, \DIY.htm which on submit calls
\autoresponder\DIYdirector.aspx, this app page stores the from results into
a database, sends out a couple of emails and then based on the
"paymentMethod" data displays the respective page. The folder "secure" has
SSL enabled on it.
Here's the code that contains the redirect:
Select Case Request.Form("paymentMethod")
Case "Credit card"
Session("Name") = Request.Form("Name")
Session("Address") = Request.Form("Address")
Session("City") = Request.Form("City")
Session("State") = Request.Form("State")
Session("Zip") = Request.Form("Zip")
Response.Redirect(https://development.froghaven.com/HCS_IT/noiseshield/autor
esponder/secure/ccPayments.aspx)
Case "Pay By Phone"
Response.Redirect("DIYpayByPhone.htm")
Case "Mail Check"
Response.Redirect("DIYpayByMail.htm")
End Select
folder set up with SSL. My problem is that when the redirect is executed I
get a "page can not be displayed" error on the browser.
The destination page had been tested prior to switching on the SSL
requirement for the subdirectory so I'm pretty sure the page(s) works. Any
ideas what I've done wrong or what I need to try to get it working?
The flow is from an HTML form, \DIY.htm which on submit calls
\autoresponder\DIYdirector.aspx, this app page stores the from results into
a database, sends out a couple of emails and then based on the
"paymentMethod" data displays the respective page. The folder "secure" has
SSL enabled on it.
Here's the code that contains the redirect:
Select Case Request.Form("paymentMethod")
Case "Credit card"
Session("Name") = Request.Form("Name")
Session("Address") = Request.Form("Address")
Session("City") = Request.Form("City")
Session("State") = Request.Form("State")
Session("Zip") = Request.Form("Zip")
Response.Redirect(https://development.froghaven.com/HCS_IT/noiseshield/autor
esponder/secure/ccPayments.aspx)
Case "Pay By Phone"
Response.Redirect("DIYpayByPhone.htm")
Case "Mail Check"
Response.Redirect("DIYpayByMail.htm")
End Select