ASP.NET Roles

mike55

Contributor
Joined
Mar 26, 2004
Messages
727
Location
Ireland
I have been following a video on www.asp.net regarding user roles. Can anyone point me to a resource where someone has implemented the functions programatically i.e. go to their own database validate user return details and assign them to a role.

Mike55.
 
Problem solved, I used the following:
Code:
        HttpContext.Current.User = New System.Security.Principal.GenericPrincipal(HttpContext.Current.User.Identity, role)

Mike55.
 
Back
Top