Doubts regarind user management
-
Hi all, I have few doubts running though my mind which I want to clear. Here is my scenario let's say I want to create a website for library management. I need to have registration page where I will allow users to register and login. My doubt is : After login how do I restrict users from accessing only the authorized page ? also I need to make sure that they should not access pages by entering the url directly without authentication ? i don't want to use the login controls provided in asp.net by default. Thanks :)
-
Hi all, I have few doubts running though my mind which I want to clear. Here is my scenario let's say I want to create a website for library management. I need to have registration page where I will allow users to register and login. My doubt is : After login how do I restrict users from accessing only the authorized page ? also I need to make sure that they should not access pages by entering the url directly without authentication ? i don't want to use the login controls provided in asp.net by default. Thanks :)
Forms Authentication I think this should cover what you want, it essentially provides an authentication model for you that doesn't have to use .NET login controls, you can use the API to come up with one yourself.
-
Forms Authentication I think this should cover what you want, it essentially provides an authentication model for you that doesn't have to use .NET login controls, you can use the API to come up with one yourself.