G
Gary Morris
Hello all,
I know this is probably fairly easy, but I want to find out the
BEST way to do it. We're in the process of upgrading from
ASP to ASP.Net. The first project on the list is the login pages,
and they have already been converted to .Net. The pages from
which login.aspx is linked are either classic ASP or just plain
HTML. We use an image and link like this:
<a href="_private/login.aspx">
<img border="0" src="_borders/Login.gif"
xthumbnail-orig-image="../images/Login.gif" width="60" height="25"
align="right">
</a>
which works just fine to get there. Once there, the username and
password are entered, then verify.aspx validates the user. If the
user does not have an account, he/she is able to click another link
that lets them create an account. On creation, they are then
logged in. What we want is to return the user to the page they
were on when they clicked LOGIN. I was thinking of just using
session information, but I've been told that you cannot do that
when mixing ASP and ASP.Net, so I need another way.
Can anyone make some suggestions as to the best way to do this?
Or, direct me to a resource that will give examples. We do NOT
want to use cookies, as some people are paranoid and will not use
them.
Thanks.
I know this is probably fairly easy, but I want to find out the
BEST way to do it. We're in the process of upgrading from
ASP to ASP.Net. The first project on the list is the login pages,
and they have already been converted to .Net. The pages from
which login.aspx is linked are either classic ASP or just plain
HTML. We use an image and link like this:
<a href="_private/login.aspx">
<img border="0" src="_borders/Login.gif"
xthumbnail-orig-image="../images/Login.gif" width="60" height="25"
align="right">
</a>
which works just fine to get there. Once there, the username and
password are entered, then verify.aspx validates the user. If the
user does not have an account, he/she is able to click another link
that lets them create an account. On creation, they are then
logged in. What we want is to return the user to the page they
were on when they clicked LOGIN. I was thinking of just using
session information, but I've been told that you cannot do that
when mixing ASP and ASP.Net, so I need another way.
Can anyone make some suggestions as to the best way to do this?
Or, direct me to a resource that will give examples. We do NOT
want to use cookies, as some people are paranoid and will not use
them.
Thanks.