And then on the pages using the session id value, do something like this.
If LCase(Request.ServerVariables("HTTPS") = "off" Then
vSession = Session.SessionID
Else
vSession = Request.QueryString("sessionid"
End If
Then when you do your logic, refer to vSession instead of Session.SessionID
One more question, where can I find out more of how to use SSL properly. Meaning, I am building a shopping and what should be sent to SSL, only pages like Checkout page, Member Info, etc?
Right now my problem is that I have a share SSL and when I redirect a page from non to a secure page, it gives me a different session id. Do yo think I need a dedicated cert. to make it stay with same session id?
You definately need a dedicated cert, since the domain name and the name of the ssl key won't match. I would try just to ssl the user entry pages since ssl is a lot slower than regular http.
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.