I am sending session value from asp to aspx page using post method. How to receive the session value in aspx page with security that sending sesion value
I don't think session values pass from http to https, you might have to write to a database and pass the data you need via their IP Address if you can't use QueryStrings..
kathir_cs
Member
20 Points
88 Posts
How to send session values from asp page to aspx page with security
Mar 24, 2012 04:45 PM|LINK
Hi,
I am sending session value from asp to aspx page using post method. How to receive the session value in aspx page with security that sending sesion value
with security
Thank u in advance
paritoshmmec
Participant
1555 Points
304 Posts
Re: How to send session values from asp page to aspx page with security
Mar 24, 2012 04:54 PM|LINK
1. you can encrypt the data and put it in session variable.
2. Decrypt in aspx page and use it.
Thanks and Regards,
Paritosh
kathir_cs
Member
20 Points
88 Posts
Re: How to send session values from asp page to aspx page with security
Mar 24, 2012 05:06 PM|LINK
Allready am sending the session variabl only
GuyCre8ive
Member
173 Points
296 Posts
Re: How to send session values from asp page to aspx page with security
Mar 24, 2012 05:31 PM|LINK
I don't think session values pass from http to https, you might have to write to a database and pass the data you need via their IP Address if you can't use QueryStrings..
Kulrom
Contributor
4836 Points
895 Posts
Re: How to send session values from asp page to aspx page with security
Mar 24, 2012 07:00 PM|LINK
Yeah, as the previous replier mentioned it you may want to use QueryString. Normaly you send encrypted value :)
I use this approach all the time and so far i've had no problems. Works like a charm
My Blog: ASP.NET Stuff
basheerkal
Star
10672 Points
2426 Posts
Re: How to send session values from asp page to aspx page with security
Mar 25, 2012 03:45 AM|LINK
Please refer this page. It may help you.
http://msdn.microsoft.com/en-us/library/6c3yckfw.aspx
B
(Talk less..Work more)
ramiramilu
All-Star
98023 Points
14516 Posts
Re: How to send session values from asp page to aspx page with security
Mar 25, 2012 09:19 AM|LINK
shared sessions between ASP.NEt and Classic ASP - http://msdn.microsoft.com/en-us/library/aa479313.aspx
Thanks,
JumpStart