ASP.NET/C# appl

  • Thread starter Thread starter Viktor Popov
  • Start date Start date
V

Viktor Popov

Hi,
I'd like to ask you for using session.
Let's say that we have StartWebForm. A user who has opened it want to Search
the site and he/she click on the link Search.But he/she is not logged on, so
LogInWebPage is openning. After he/she input his/her username and password
and they are correct, he/she goes to SearchWebForm automatically. I don't
know how to do that automatical forward. It happens the same if he/she wants
to input data in the ForumWebForm. How could be accomplished that with
ASP.NET/C#? I've read about form authentication... I store the username and
the pass
into DataBase. How could ASP application know if the user is authenticated
or isn't authenticated when he/she would like to use SearchWebForm?


Thanks in advance!
 
Have u tried to add a boolean field on ur database in the table where u
store the usernames and passwords. This field would tell if the person
connecting to ur page is authenticated or not.
 
Back
Top