p2p.wrox.com Forums

Need to download code?

View our list of code downloads.


Go Back   p2p.wrox.com Forums > ASP.NET and ASP > ASP.NET 2.0 > ASP.NET 2.0 Professional
I forgot my password Register Now
Register | FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read
ASP.NET 2.0 Professional If you are an experienced ASP.NET programmer, this is the forum for your 2.0 questions. Please also see the Visual Web Developer 2005 forum.

Welcome to the p2p.wrox.com Forums.

You are currently viewing the ASP.NET 2.0 Professional section of the Wrox p2p Programmer to Programmer discussion community. This is a community of more than 40,000 computer programmers including Wrox book authors and readers. As a guest, you can read any forum posting. By joining our free Wrox p2p community you can post your own programming questions and respond to other programmers’ questions. Registered users also don't have to see the ads that are displayed to guests. Registration is fast, simple and absolutely free so please, join today!
Join today and post to win prizes! Post more to increase your chances of being Wrox’s top poster of the month.

Reply
 
Thread Tools Search this Thread Display Modes
  #1 (permalink)  
Old August 22nd, 2006, 10:51 AM
Friend of Wrox
Points: 376, Level: 6
Points: 376, Level: 6 Points: 376, Level: 6 Points: 376, Level: 6
Activity: 0%
Activity: 0% Activity: 0% Activity: 0%
 
Join Date: Jun 2003
Location: , , USA.
Posts: 100
Thanks: 0
Thanked 0 Times in 0 Posts
Send a message via AIM to ~Bean~
Default Forms Auth and Roles

I use Forms authentication in my project, I had no problems with it when my project was in 1.x, but since I moved it to 2.0 I am having trouble validating users in roles...they all come up as Authenticated, but false when I look at User.IsInRole("rolename")...is there a way to list out all the roles that a User is in?

-------------------------
Beware of programmers with screwdrivers...
__________________
-------------------------
Beware of programmers with screwdrivers...
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Reddit!
Reply With Quote
  #2 (permalink)  
Old August 22nd, 2006, 12:35 PM
Friend of Wrox
Points: 376, Level: 6
Points: 376, Level: 6 Points: 376, Level: 6 Points: 376, Level: 6
Activity: 0%
Activity: 0% Activity: 0% Activity: 0%
 
Join Date: Jun 2003
Location: , , USA.
Posts: 100
Thanks: 0
Thanked 0 Times in 0 Posts
Send a message via AIM to ~Bean~
Default

I found my own answer here:
http://msdn.microsoft.com/library/de...SecNetHT04.asp

Code:
Dim cookieName As String = FormsAuthentication.FormsCookieName
        Dim authCookie As HttpCookie = Context.Request.Cookies(cookieName)
        Dim authTicket As FormsAuthenticationTicket = Nothing
        authTicket = FormsAuthentication.Decrypt(authCookie.Value)
        Dim roles As String() = authTicket.UserData.Split(New Char() {"|"c})
        For Each r As String In roles
            Response.Write("arrayval=" & r & "<br />")
        Next
-------------------------
Beware of programmers with screwdrivers...
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Reddit!
Reply With Quote
Reply


Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Trackbacks are Off
Pingbacks are On
Refbacks are Off
Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
Dynamically changing Master Pages (Forms Auth) lancer ASP.NET 2.0 Basics 3 July 16th, 2006 11:59 PM
How to sign out with Window Auth Identity bekim BOOK: Beginning ASP.NET 1.1 1 November 4th, 2005 07:39 PM
How to connect Win NT Auth to ASP? p0220507 Classic ASP Databases 4 December 29th, 2004 08:36 AM
ASP.NET Forms Auth security problem englere BOOK: ASP.NET Website Programming Problem-Design-Solution 0 October 6th, 2004 04:49 PM
IIS request windows auth from outside access planoie ASP.NET 1.0 and 1.1 Professional 1 June 5th, 2004 05:58 AM



All times are GMT -4. The time now is 11:34 PM.


Powered by vBulletin® Version 3.6.8
Copyright ©2000 - 2009, Jelsoft Enterprises Ltd.
© 2008 Wiley Publishing, Inc