Hi All,
i have a doubt in windows authentication.
We have 2 Users and 2 webpages
User1 can see the webpage1 but he has no access to other page and vice versa.
How can we do this by using windows application?i have run regsql on my server so now I have all the aspnet tables in my database (aspnet_Users,aspnet_Membership,aspnet_Roles etc). .can we do this with the help of these tables?
Loading
CrishPosted May 27, 2010, 5:53 AM
Once you run regsql for asp.net membership(windows authenticaion) it will generate some table and stored procedures. You can use this tables and stored procedure for authentication.
So using this you can set rolls and rights management in ASP.Net membership object. Also, you need to do programming to check the rolls and rights in your page for access the users in your pages. So, depends upon rights and rolls user can able to access in your system.
http://msdn.microsoft.com/en-us/library/ff648345.aspx
thanks