Hello,
I have a dnn page that has a module for login a user on my site.
In this module the user can type his username and password and then hit login.
On login click I have redirected to a page from my asp site.
Here a verify if the login is correct or not, and on a login success, I save the username and password in HttpContext.Current.User.
If the login was succesfull, I want, when browsing again my dnn home page, to show another login header then the first one.
To do this I check to see if HttpContext.Current.User is not nothing.
But the problem is that this HttpContext.Current.User from my asp site is lost in my dnn page.
Could you please help me with this?