Forms Authentication is a built-in and extensible system for authenticating users in an ASP.Net application that also maintains that authenticated session via a ticket (often stored as a cookie or query string parameter).
1
vote
1answer
10 views
ASP.net forms authentication setting returnURL on a link when user is already logged in
I have a asp.net website which uses forms authentication. When i provide a link to a secure page on the website in a Microsoft Word document it sets a return URL even when i'm already logged in to the ...
0
votes
0answers
11 views
asp Forms Authentication across multiple applications (sub-domains)
I have 4 applications running on my IIS server. One of these applications is my 'main site' and there are 3 sub applications as shown in this diagram -
All of these sites are in the same domain: ...
1
vote
1answer
33 views
FormsAuthentication Roles without Membership
I'm trying to use FormsAuthentication and it's working fine at the moment with user name and password. I need to add User Role to the Forms authentication Ticket and i'm not using ASP.NET Membership. ...
0
votes
0answers
11 views
Using forms authentication cookie in WPF's browser control via Web API
We have an ASP.NET web application that uses Forms authentication. We also have a WPF application which uses a Web browser control so it can use some pages from the web application. In order to ...
0
votes
0answers
23 views
SessionAuthenticationModule Cookie Handler not creating HttpOnly secure cookie
I am using System.IdentityModel to authenticate users in an ASP.NET MVC4 web application using forms auth with a claims principal. (code based on this article: ...
0
votes
1answer
20 views
Sharing authentication between parent and child web applications
We have two separate MVC 4 Web Applications that run as parts of the same website. The main (parent) project has authentication, and it works fine. Now that we've added the second project to the same ...
0
votes
0answers
16 views
How can I get the Windows user name, pre-authentication, using FormsAuthentication?
Before I converted my app from using Windows Authentication to Forms Authentication following this tutorial (thanks, Ken!), my app would happily get the Windows user ID (e.g. with ...
0
votes
1answer
16 views
Can't recover password without loggin in in MVC with Forms Authentication
I use Forms Authentication on my project and need to implement the feature for password recovery. Problem is, every time I try to access another controller method I get redirected to the login page. I ...
1
vote
1answer
16 views
Extra properties on forms authentication user profile
I'd like to use forms authentication for an MVC project but I would also like to associate a few extra properties to the user profile (profile picture, birth date, etc).
Is there a way to simply ...
1
vote
1answer
84 views
+100
ASP.NET MVC appsetting loginUrl acceptance
I know the original purpose of
<add key="enableSimpleMembership" value="false" />
was to address ASP.NET MVC3 Known Issues that setting the value in forms configuration is ignored on MVC3. ...
0
votes
1answer
32 views
Symfony2 - Wrong Token after authentication
I am new to Symfony2 and facing an issue since a week as I need to implement custom authentication. I managed to get create everything i.e. token, listener, provider, factory, user provider etc. My ...
2
votes
1answer
16 views
How can I have a custom login page in EWL?
I have a web application using Enterprise Web Library and I've found the need to have a custom log-in page. I see that EWL provides one for me, but I want to be able to have some custom elements on ...
0
votes
1answer
17 views
Requesting partial view via ajax in forms authenticated application
I have an ASP.NET MVC application with forms authentication enabled. I'd like to request a partial view using ajax and load the resulting html into a div on my main view, but I want to make sure that ...
1
vote
2answers
60 views
asp.net forms authentication urlrewrite http to https causes redirect loop on page timeout
I have an asp.net web site with forms authentication that seems to be experiencing a redirect loop issue when the page times out.
First my rules:
<rewrite>
<rules>
<clear ...
0
votes
1answer
25 views
Forms authentication issue with Chrome on iPhone
I have an MVC 4 website that uses .NET Framework 4.0 and has been deployed with a Windows Server 2003 IIS and I am having problems with forms authentication on an iPhone (especially Chrome browser).
...