Forms Authentication is a built-in and extensible system for authenticating users in an ASP.
I have some AJAX calls that render PartialViewResults via the jQuery.AJAX method. This works great, I get my views …
jquery asp.net-mvc ajax session forms-authenticationI want to pass the authentication cookie from my ASP.Net MVC 5 (.Net 4.5.1, hosted locally on iisexpress, run from Visual …
c# asp.net wcf forms-authentication machinekeyI'm using the following code in an MVC5 site: [HttpPost] [ValidateAntiForgeryToken] public ActionResult Login(LoginModel loginModel) { if (ModelState.IsValid) { var …
c# forms-authentication dotnetopenauth asp.net-mvc-5 owinI'm trying to seamlessly log in the user without prompting for credentials as part of a <asp:Wizard> …
asp.net asp.net-membership forms-authentication code-behind wizardI am building a simple CMS in which roles are set dynamically in the admin panel. The existing way of …
asp.net-mvc content-management-system forms-authentication authorization rolesIn ASP.NET the FormsAuthenticationModule intercepts any HTTP 401, and returns an HTTP 302 redirection to the login page. This is a …
asp.net forms-authentication asp.net-mvc-4 asp.net-web-api asp.net-authorizationIt appears that there was a problem at some point that folks tracked down that caused authentication tickets to be …
asp.net forms-authentication web-farmIn one application configured with FormsAuthentication, when a user access without the auth cookie or with an outdated one to …
asp.net ajax http jquery forms-authenticationWhen a user logs in based on default Forms Authentication method, the server creates a cookie containing encrypted data (using …
asp.net forms-authentication machinekey formsauthenticationticket machine.configI have something like this: FormsAuthentication.SetAuthCookie(user, false); var tmp = Roles.IsUserInRole("administrator"); var _tmp = Roles.IsUserInRole(user, "administrator"); …
c# asp.net-mvc asp.net-mvc-3 forms-authentication roleprovider