Posted on: 3/5/2014 8:13:20 PM | Views : 624

Hey all I have an update form (user control) and I have two buttons one to submit the update and one to cacel which I would like to redirect the user back to a particular page based on what role access they have 
I have tried the following code but neither have worked it just keep going back to the same page :(
        if (Page.User.IsInRole("Site Members"))         {             Server.Transfer("~/member-dashboard.aspx");         }         if (Page.User.IsInRole("Venue Owners"))         {             Server.Transfer("~/advertiser-dashboard.aspx");            ...

Go to the complete details ...