I am new to silverlight and working on a silverlight application hosted in mvc. User will login in aspx page /LogOn and will be redirected to either silverlight application or another view. To access
I want to make a custom AuthorizeAttribute that includes a Message property. The problem is, my FormsAuthentication redirects to the specified loginUrl. How can that View get access to the attribute\'
I have the form authentication work fine with expiry 3 months cookie setting: FormsAuthentication.Initialize();
I am using the code belowto access a page base based upon user authentication if (user.FirstOrDefault() == HashedPassword)
I know the question is kind of vague, but I need to know why most companies that I have worked for haven\'t used it. I find 开发者_StackOverflow中文版it very useful (along with the membership stuff).
When someone logs into my application and they checked the \"Remember Me\" checkbox, I set the createPersistentCookie = true so that wh开发者_运维百科en they come back they don\'t need to log in again
There seems to be a plethora of resources out there on how to do this, but I haven\'t really been able to find anything to exactly do what I want to do. I\'m trying to create a WCF web service that wi
if (!IsPostBack) { var auth = new CanvasAuthorizer(fb); if (!auth.IsAuthorized()) { var url = auth.GetLoginUrl(new HttpRequestWrapper(Request));
I have a public facing website and need to create an \"admin\" site for managing the content of the website.I would like to create an \"Area\" for admin functionality and secure just the Admin area us
I am using form authentication with below method in my ASP.NET application FormsAuthentication.RedirectFromLoginPage(txtUsername.Text, true);