how to pass variables invisibly from .aspx to .asp pages?
how to pass variables invisibly from .aspx to .asp pages?
am 07.03.2007 03:50:15 von Mike
Hello,
I've got a .aspx page that passes login information to an .asp page
using a querystring. The problem is its not secure, the user can see
the login information right there and type in someone elses login
name. Is there another way to pass the variables?
Thanks,
Mike
Re: how to pass variables invisibly from .aspx to .asp pages?
am 07.03.2007 05:44:10 von Adrienne Boswell
Gazing into my crystal ball I observed "mike"
writing in news:1173235815.251036.76020@s48g2000cws.googlegroups.com:
> Hello,
>
> I've got a .aspx page that passes login information to an .asp page
> using a querystring. The problem is its not secure, the user can see
> the login information right there and type in someone elses login
> name. Is there another way to pass the variables?
>
> Thanks,
> Mike
>
>
Munge/encrypt the data in the querystring, and have the ASP page
unmunge/unexcrypt it.
--
Adrienne Boswell at Home
Arbpen Web Site Design Services
http://www.cavalcade-of-coding.info
Please respond to the group so others can share
Re: how to pass variables invisibly from .aspx to .asp pages?
am 07.03.2007 20:11:03 von Mike
On Mar 6, 8:44 pm, Adrienne Boswell wrote:
> Gazing into my crystal ball I observed "mike"
> writing innews:1173235815.251036.76020@s48g2000cws.googlegroups.com:
>
> > Hello,
>
> > I've got a .aspx page that passes login information to an .asp page
> > using a querystring. The problem is its not secure, the user can see
> > the login information right there and type in someone elses login
> > name. Is there another way to pass the variables?
>
> > Thanks,
> > Mike
>
> Munge/encrypt the data in the querystring, and have the ASP page
> unmunge/unexcrypt it.
Good idea, thanks! Anyone have a suggestion for a simple library to
encrypt/decrypt a querystring?
Re: how to pass variables invisibly from .aspx to .asp pages?
am 19.03.2007 21:19:21 von Mike
On Mar 7, 12:11 pm, "mike" wrote:
> On Mar 6, 8:44 pm, Adrienne Boswell wrote:
>
> > Gazing into my crystal ball I observed "mike"
> > writing innews:1173235815.251036.76020@s48g2000cws.googlegroups.com:
>
> > > Hello,
>
> > > I've got a .aspx page that passes login information to an .asp page
> > > using a querystring. The problem is its not secure, the user can see
> > > the login information right there and type in someone elses login
> > > name. Is there another way to pass the variables?
>
> > > Thanks,
> > > Mike
>
> > Munge/encrypt the data in the querystring, and have the ASP page
> > unmunge/unexcrypt it.
>
> Good idea, thanks! Anyone have a suggestion for a simple library to
> encrypt/decrypt a querystring?
anyone? I bought a library for asp but I cant get it to work in the
aspx code because it uses session variables, which apparently aren't
compatible with the asp pages. I need a really simple routine I can
put in the .aspx file to encrypt the querystring and a decrypt routine
I can put in the asp file. Anyone?
Is there a way of reading aspx session variables with asp code?
-Mike