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).
0
votes
0answers
5 views
Convert a Forms Authentication protected HTML page to PDF using WkHtmlToPdf
In an MVC4 site I'm working on, I'm trying to allow the user to download a page they're viewing as a pdf using WkHtmlToPdf
http://code.google.com/p/wkhtmltopdf/
I've downloaded a wrapper for ...
1
vote
1answer
36 views
MVC 4 Forms Authentication not working with [Authorize]
I'm learning MVC4 right now, and I am following the Pro ASP NET MVC4 4th edition book to create a Sports Store project.
I have always developed in webforms, and I am trying to figure out how the ...
0
votes
0answers
17 views
ASP.NET MVC4 WebMatrix WebSecurity Forms authentication: Changing a username
I'm using WebMatrix WebSecurity for my application's Forms Authentication.
The user needs to be able to change his username, without being logged out.
I supposed calling WebSecurity.Logout(), ...
0
votes
0answers
22 views
Self Hosted Web API Authentication
I have a self hosted Web API running, which using DotNetOpenAuth to issue authorization tokens. Basically, the project consists of 2 ApiController endpoints (Authorize and Token). I would like to ...
0
votes
2answers
14 views
UserData property of FormsAuthenticationTicket is empty despite being set
For some reason, I the UserData property of my authentication cookie is empty. Here is the code:
var authCookie = FormsAuthentication.GetAuthCookie(userName, rememberUser.Checked);
// Get the ...
0
votes
0answers
19 views
Multiple Forms Authentication Cookies? Employee/Customer
Is there a way to have two forms authentication cookies for a web application in .Net?
I'm thinking of a scenario where a company employee would place an order for a customer. Instead of creating a ...
0
votes
1answer
36 views
Posting login form credentails to server and receving response using backbone in pure html page
I am relatively new to backbone. I am simply trying to authenticate user against server.
Form
<form action="/login" id="login-form">
<input type="text" id="username" name="username" ...
0
votes
1answer
29 views
Asp.net site lost authentication when login in other site on same server
I have 2 Asp.net website in the same ISS7 webserver.
Both site use forms authentication.
When I'm logged in on first web site and I try to login on second web site, I lost authentication on fisrt one.
...
0
votes
0answers
17 views
MVC 4.0, iis express, visual studio 2012 forms authentication and session state timeout issue
I have created a new MVC 4.0 application using the forms authentication template which comes with visual studio 2012.
All works fine and I can login and logout and I am directed to my home page after ...
0
votes
1answer
36 views
ASP.NET Forms Auth For Downstream WCF Authentication and Authorization
Development Environment: Windows 7 Enterprise with
.NET 4.0 with Visual Studio 2010
Production Environment: Windows 2008 Server with IIS 7.0
I'm trying to figure out the best way to authenticate and ...
-1
votes
0answers
27 views
ASP.NET FormsAuthentication fails on IE
on my local machine, the FormsAuthentication mechanism forks fine in any browser. But, on my production server it fails if I use IE. Why ? In my domain name I don't have an underscore (which could ...
0
votes
0answers
36 views
ASP.NET Forms Authentication with per session/page API token
Let me first start by saying that I realize that this is very similar to many other questions about service access control but I can't seem to find one response that is relevant on all of the points ...
1
vote
0answers
22 views
Can different ASP.NET websites share Forms Authenticaiton if they're on the same server?
This MSDN article states that you can share forms authentication across across websites that are on the same server. Will this still work if the websites on the same server have completely different ...
0
votes
1answer
25 views
How to redirect to login screen if not logged in for certain web pages
So I have a login.aspx and it is set up so that all forms redirect to the login page if you are not logged in. This site is suppose to be public, no login is required except if you are admin and want ...
1
vote
1answer
31 views
HTTPContext User Set In BeginRequest Not Available In Controller
I am rolling with a somewhat homebrew method of authenticating users. After authenticating the user, the authentication ticket is set like so in C#.
FormsAuthenticationTicket authenticationTicket = ...
0
votes
3answers
56 views
forms authentication is returning the logon page as html on unauthorized access?
In my ASP.Net MVC app, if the user is logged out or Session times out during an ajax call the log-on page is being returned to the calling javascript ajax call as html. This causes an error on the ...
0
votes
0answers
21 views
Settings a FormsAuthentication Cookie for another application
I have two .NET 4.5 MVC (C#) applications running on the same hostname, one in the root of the domain (public/members only site), the other in a subfoler (admin site). Both use forms authentication, ...
0
votes
2answers
32 views
HttpContext.User.Identity.IsAuthenticated never true
Login
[HttpPost]
public ActionResult Login(LoginModel loginModel)
{
if (ModelState.IsValid)
{
using (var _Db = new AccountContext())
{
var _UserAccount = ...
0
votes
1answer
49 views
Why is my application going back to the login page after successful authentication?
I'm working on an ASP.Net Web application that uses Forms-based authentication. I'm authenticating against an Active Directory domain. I'm getting successful authentication, getting the information I ...
0
votes
0answers
32 views
Claims-Based Identity and SimpleMembership
I've been looking into extending the Principal and while researching I learned that FormsAuthentication is "antique" and should be replaced with Claims-Based Identity. At least for federated ...
1
vote
1answer
60 views
Secure cross-domain authentication form
I have a server 'A'. You have a server 'B'. Server 'A' wants to provide a login form to server 'B' (username and password).
How can I implement that scenario where server 'B' can't see/intercept ...
0
votes
1answer
102 views
Using form Authentication and Basic Authentication Authorization in Web Api
I have Built a mobile app using ASP.Net web APi. the authentication was done using Basic http authorization filter.Now the client want the app to be manage from the MVC web application. i added ...
0
votes
1answer
23 views
How to filter data shown using Forms Authentication?
I'm using Forms Authentication and SimpleMembership for login functionality in my ASP.NET MVC Application.
Now I'd like to filter what is shown to the user depending on which department the logged in ...
0
votes
0answers
35 views
Accessing login page appends ReturnUrl on IIS?
I have a webforms application configured to use forms authentication. It works on my development machine but since I configured it on IIS, I get a ReturnUrl on my login page with the application name, ...
0
votes
0answers
46 views
How do I keep the FedAuth Cookie from ClaimsPrincipal from being shared between two websites that share a common domain?
I have two websites:
global.domain.com and global.domain.com/site1
/site one is an Application added to IIS under global.domain.com's site.
users will sign into global.domain.com, and then click on ...
0
votes
0answers
31 views
Advice on structuring access control in database using entity framework
I am looking for some advice and assistance with an architecture I am attempting to implement. The application I am building provides SSO and central authentication for multiple ASP.NET websites that ...
1
vote
1answer
68 views
MVC4 authentication & authorization for custom database
first of all I wanna say that I know there are many topics about this and I'm also searching the web to understand the whole concept that mvc deals with the security and keeping user information etc, ...
0
votes
1answer
48 views
Forms-Authentication: Can I have multiple loginUrl's?
Is there any way I can use 2 different logUrl's with ASP.net forms authentication? If possible, I'd like to send some users to a different login page. I tried to add a web.config in a subdirectory ...
0
votes
1answer
37 views
ASP.NET not redirecting to defaultURL automatically after ending session
This seems to be a very trivial question but still I am not able to get it running. I am building an asp.net web application and I am using forms authentication here. The following steps I have ...
0
votes
0answers
43 views
Window Active Directory authentication for Intranet user and Forms authentication for Internet users
How do i implement Window Active Directory authentication for Intranet user and Forms authentication for Internet users, i found many examples online explaining each of them individually but can't get ...
0
votes
1answer
37 views
Is it possible to use WIF SessionAuthenticationModule cookies across sub-domains?
I'm currently authenticating across sub-domains using Forms Auth. So I have the following servers:
site1.domain.com
site2.domain.com
and they're able to share a Forms Auth cookie. Here is a link to ...
0
votes
0answers
20 views
ASP.NET - Windows prompt or forms authentication?
I have an interesting requirement...
My company wants to force users to re-authenticate when accessing certain web based applications inside our network. This is coming down from a directive that ...
0
votes
1answer
155 views
MVC to WebAPI authentication for the same application
I'm building a website that will have an MVC side and will get its data from a WebAPI backend of our own, but most likely hosted on a different server (or even on Azure). We're going to use Forms ...
0
votes
1answer
24 views
Using forms Auth with existing database in MVC3
MVC3 web app tied to db on SQL Server 2012. This will be a public facing web site hosted by a third party.
I am new to using forms authentication. I created a project in VS 2012 a couple months ago ...
0
votes
0answers
13 views
.NET Session Hopping in Web Farm
Recently migrated our .NET website to a Cloud environment with a gateway server acting as an IIS Web Farm to load balance our requests.
Our application uses forms authentication through cookies and ...
1
vote
0answers
74 views
Asp.net MVC 4 and FormsAuthentication.User
Im trying to use FormsAuthentication in asp.net MVC 4 application.
The authentication itself works fine, but whenever Im getting the User from FormsAuthenticationEventArgs.User and assign to ...
4
votes
1answer
88 views
Keeping user logged in - FormsAuthentication
I am having the hardest time figuring this out. I am using FormAuthentication. When a user logs in and they check remember me, I want to the user to stay logged in for 24 hours. The problem is, no ...
1
vote
0answers
69 views
asp.net cross server httpwebrequest cookie login
I am building a sister site. I want my logged in user to be able to login to the sister site.
The user is entered into both databases and has a token (guid) that matches.
I am posting the token in a ...
2
votes
0answers
63 views
How can I configure site Authorization for an MVC site with Web Forms components?
I have an MVC site where I need to use the ReportViewer control to integrate with SSRS. This means I need to have a Web Forms page within the site specifically for dealing with reports. Thankfully ...
0
votes
1answer
66 views
ASP.NET Authentication
I have the following a login page where the user enters in their username and password.
With that info, I need to then make sure that they are part of the Admin1 role If so, I like to set a cookie on ...
1
vote
0answers
73 views
Issue with Spaces in UserContainer LDAP string for Forms Based Authentication in SharePoint 2013
Steps:
Web Application was created with Claims Authentication using Windows NTLM Authentication
FBA (Forms Based Authentication) was enabled post app creation
Was able to set up Forms ...
0
votes
0answers
67 views
Opening popup for login authentication - FormsAuthentication MVC
Currently I am using the default login page which comes with the ASP.NET MVC template. I want to change my login page to a modal dialog. I am unable to figure out how Forms authentication would work ...
0
votes
1answer
21 views
Some pages ask for authentication although user is already authenticated
In an MVC 4 project, i've used ASP web form authentication and is implemented in a base controller.
There are no specific roles created. Just simple combination of user name , password and ...
0
votes
0answers
26 views
How to set and retrieve custom profile properties in sharpeoint 2010 FBA
I have one sharepoint site in which FBA was enabled.
I am trying to show all the registerd users in a grid. Along with the username and password i want to show some custom properties like company and ...
0
votes
2answers
24 views
How To Implement Form authentication Security in asp.net?
i have employee and department in database and 3 types of users should be logged in
first>admin can add update and delete records for departments and employees and assign depart manager
second> ...
0
votes
2answers
95 views
ASP.NET MVC 3 website ignoring the forms authentication loginUrl value
I just joined a project that has been underway for a few months and have been asked to look at a bug where users are redirected to the forms authentication loginUrl after authentication times out. ...
0
votes
1answer
47 views
How can I log someone into DotNetNuke without knowing their DotNetNuke password in an SSO scenario?
We are setting up a single sign on system to handle authentication and authorization among our different systems (almost all of which are not DNN systems).
The idea is that the user will be given a ...
0
votes
2answers
104 views
Getting the current user id (not name) using forms authentication?
Question:
I'm playing around with forms authentication and my own custom membership provider.
From what I see, I can get the current FormsIdentity by doing:
System.Web.Security.FormsIdentity ...
0
votes
0answers
69 views
Getting Windows User ID When Using Forms Authentication
I'm working on an ASP.NET MVC app running on our intranet. We are using forms authentication, however the usernames set up will be the same as the Active Directory usernames. I'm trying to find a ...
0
votes
0answers
36 views
FormsAuthentication.SetAuthCookie not generate cookies
I have an application with asp.net that uses FormsAuthentication.SetAuthCookie when I test the application on the server the application recognizes the cookies and go into the application, on client ...





