I'm trying to use a couple of Session variables within SSL.
My form submits to the same page and this is at the top of the page.

<%
Session("ShipAhead") = Request.Form("ShipAhead")
Session("Comments") = Request.Form("Comments")
%>

The form fields are populated but the Sessions are empty on my next page.
Am I missing something? Is there a problem with Sessions and SSL?
thanks!

Re: sessions and SSL by Aaron

Aaron
Mon Jan 05 10:59:04 CST 2004

If you go from non-SSL to SSL, yes, a new session is started, because using
a new protocol (http -> https) is much like using a new domain name. See
bullet #2 of http://www.aspfaq.com/2157

--
Aaron Bertrand
SQL Server MVP
http://www.aspfaq.com/




"shank" <shank@tampabay.rr.com> wrote in message
news:#w6yH060DHA.2460@TK2MSFTNGP10.phx.gbl...
> I'm trying to use a couple of Session variables within SSL.
> My form submits to the same page and this is at the top of the page.
>
> <%
> Session("ShipAhead") = Request.Form("ShipAhead")
> Session("Comments") = Request.Form("Comments")
> %>
>
> The form fields are populated but the Sessions are empty on my next page.
> Am I missing something? Is there a problem with Sessions and SSL?
> thanks!
>
>