Top "Forms-authentication" questions

Forms Authentication is a built-in and extensible system for authenticating users in an ASP.

How to force the user to login to see any content using ASP.NET MVC 4

I am working on a 'ASP.NET MVC 4' application and use 'SimpleMembershipProvider'. The application will be used in intranet …

asp.net-mvc-4 forms-authentication simplemembership
Cookie expires or session timeout too soon

I have code like this which is run when a user is authorized: FormsAuthenticationTicket authTicket = new FormsAuthenticationTicket( 1, email, DateTime.Now, …

asp.net-mvc session forms-authentication session-cookies
FormsAuthentication LoginUrl

I am at a total loss here. This was working earlier. I have an MVC3 app using forms authentication. In …

asp.net-mvc asp.net-mvc-3 forms-authentication
SEVERE: jdbcrealm.invaliduserreason WEB9102: Web Login Failed

I'm trying to get my login form to with a MySQL Database and keep on getting the following error: [update] …

java forms-authentication security jdbcrealm
How to use forms authentication without login control?

How to use forms authentication without login control.I don't want to use asp.net login control in my site.…

asp.net asp.net-membership forms-authentication custom-membershipprovider asp.net-authentication
FormsAuthentication: Is it secure?

Using FormsAuthentication build into asp.net it's very quick and easy to create a login system that creates a cookie …

asp.net security cookies ssl forms-authentication
How to deny anonymous users to virtual directory

How can I deny access to my virtual directory, to those who havent logged into my asp.net website yet? …

asp.net forms-authentication virtual-directory
How to handle "Remember me" in the Asp.Net Membership Provider

Ive written a custom membership provider for my ASP.Net website. Im using the default Forms.Authentication redirect where you …

asp.net cookies forms-authentication membership remember-me
In Asp.Net MVC what other options do I have with Authentication Mode?

In the Web.config file this piece of info is there <authentication mode="Forms"> <forms loginUrl="~/Account/…

asp.net-mvc-3 forms-authentication client-certificates
How secure is basic forms authentication in asp.net?

Imagine that you have a simple site with only 2 pages: login.aspx and secret.aspx. Your site is secured using …

asp.net forms-authentication