V
VB Programmer
I have an ASP login page. Once logged in, I get redirected to an ASPX page.
According to alot of people sharing session variables is difficult between
ASP and ASPX page so I was thinking about using the querystring.
Is there a way to encrypt a querystring in ASP and decrypt it in ASP.NET?
For example, if I had a redirect like this:
SecuredPage.aspx?UserName=BJones&Password=Hello
I want to encrypt it so that it is garbage to the human eye. But, I still
want to be able to use it, such as QueryString("UserName").
Any ideas?
According to alot of people sharing session variables is difficult between
ASP and ASPX page so I was thinking about using the querystring.
Is there a way to encrypt a querystring in ASP and decrypt it in ASP.NET?
For example, if I had a redirect like this:
SecuredPage.aspx?UserName=BJones&Password=Hello
I want to encrypt it so that it is garbage to the human eye. But, I still
want to be able to use it, such as QueryString("UserName").
Any ideas?