The formsauthentication tag has no wiki summary.
0
votes
1answer
37 views
Why/When should I use WebSecurity.cs
What is the purpose of websecurity.cs, if I can do this using the FormAuthentication and the Membership classes in System.Web.Security why would I need a class to do the same?
1
vote
0answers
226 views
Formsauthentication.RedirectFromLoginPage keeps looping
This is in continuation to my last question (ASP.net Custom membership on top of quality center authorization)
developing asp.net application to provide an customized interface to HP's Quality ...
2
votes
0answers
80 views
Possible to have a NodeJS app under iisnode authenticate with ASP.NET FormsAuthentication?
1) We have a NodeJS app that we need to host under IIS 7.5/Win2k8 R2.
2) We have other apps that already use ASP.NET FormsAuthentication.
3) The users that will use the NodeJS app are the same users ...
1
vote
2answers
130 views
FormsAuthentication.SetAuthCookie in Generic Handler ashx
I have an Generic Handler where I would like to auto-login based on some querystrings.
But then I set FormsAuthentication.SetAuthCookie(user.Name, false), but ...
0
votes
0answers
31 views
FormsAuthentication iOS
Using ASP.net FormsAuthentication on my website to store user credentials.
Seems to be working fine in all desktop browsers,
but not working on iOS (tested on version 5).
Tried the setting suggested ...
0
votes
1answer
56 views
Persisting FormsAuthentication User throughout MVVM Silverlight App
I need to step back on this one and start over... I want to load values in a comboBox through my ViewModel based on the User logged in. I'm using FA is this the best method? Can I access the cookie ...
0
votes
0answers
31 views
Forms Authentication working wierdly in mvc3
My Login Code
[HttpPost]
public ActionResult Login(UserViewModel model, string returnUrl)
{
if (ModelState.IsValid)
{
if (ValidateUser(model.Username, ...
0
votes
0answers
153 views
FormsAuthentication.SetAuthCookie intermittent timeout
I am having intermittent forms authentication timeout issues. The timeout is configured in the web config: -
<authentication mode="Forms">
<forms loginUrl="~/Account/LogOn" timeout="720" ...
0
votes
1answer
61 views
Response.Redirect not evaluating
I have the following ajax script on my Default.aspx page for login
$(document).ready(function () {
$('#UserLogin').submit(function (e) {
$.post("LoginApp.aspx?formpost=Login", { UserID: ...
0
votes
0answers
74 views
ASP.net FormsAuthentication multiple domains spurious cookie created
The company I work for has 2 domains that point at the same code base (the sites are basically the same but there are some theme and minor functionality differences) mydomain1.com and mydomain2.com. ...
1
vote
2answers
236 views
MVC3 FormsAuthentication cookie not obeyed in Firefox and Chrome, works in IE
I'm stumped. I have an MVC3 application that is using FormsAuthentication with a custom token (storing some additional user data). It works in IE. In Firefox and Chrome, however, the cookie is not ...
1
vote
0answers
52 views
Using Email for Username in ASP.NET Framework 4 Forms Auth
I want to use the built in Forms Authentication in an MVC 4 app using Framework 4.5.
However I can't seem to override the the username field - even if I edit the account model and set the username to ...
0
votes
1answer
105 views
FormsAuthentication is I'm not passing user but I am
I have this logon method:
// POST: /Account/LogOn
[HttpPost]
public ActionResult LogOn(LogOnModel model, string returnUrl, string corpid)
{
var sb = new StringBuilder();
...
0
votes
1answer
137 views
How do I secure a web app using active directory groups?
Sorry for the basic question, first time with Web MVC4 in C#...
I'm creating a web interface for an application I've written in C#/SQL. I've been able to attach the MVC4 framework to the SQL DB. ...
0
votes
2answers
214 views
How to check if user validation (FormsAuthentication) was performed using cookies?
I have a validation (authentication) problem within my ASP.NET application - I use FormsAuthentication with cookies enabled, however because of security reasons I am forced to ALSO use another, ...
1
vote
1answer
119 views
How to synchronize machine keys in AWS EC2?
Since Auto-Scaling doesn't allow buffer period and/or is not intelligent enough to NOT allow only "new requests" coming in to the instance which is scheduled to be turned off due to down-autoscaling, ...
0
votes
1answer
67 views
FormsAuthentication Redirect cross site
I've 2 web site. From web site 1 I need to execute login into website 2 and return to original requested url (requested url of website 1).
On login click, whan I execute ...
1
vote
1answer
186 views
MVC 3 partial caching
I know this question has been asked before but I'm confused as to the best approach so please forgive me asking again...
I have an MVC3 application that will be an extranet, allowing users to log in, ...
0
votes
0answers
30 views
Authenticating a Website with FormsAuthentication from WindowsApplication?
I am using a Website which is having FormsAuthentication. I have a Webservice in an Inner Folder which will be called from a WindowsApplication.
The Problem is whenever the Webservice is called the ...
0
votes
1answer
145 views
forms authentication cookie value looks empty in firebug
I am having a lot of trouble getting a Forms Authentication Ticket and Cookie to work properly , for right now I am just wondering if it is normal for the cookie to appear to have no value in firebug ...
1
vote
1answer
524 views
FormsAuthentication ASPXAUTH Cookie WCF and JSON
I have a WCF web service that expose functions to get X informations. The service return the informations in JSON format. What I need to do if I want to secure this web service? Not using default IIS ...
0
votes
0answers
188 views
Sharepoint REST query breaking when accessing list with content approval for reader
We have an Infopath 2010 form (full-trust) deployed in Sharepoint 2010 site. The form has couple of data connections out of which one is using REST webservice to query a list
(List-A) dynamically. ...
1
vote
0answers
166 views
anonymousIdentification to go away when browser closes
I am trying to use aspx anonymousIdentification, but I ran into a problem.
How can I make the cookie go away, disappear, die, when the browser is closed?
I know I can manually, with some code, get ...
0
votes
1answer
448 views
FormsAuthentication.SetAuthCookie is not setting cookie in WebResponse Cookie Collection
I have a website that uses forms authentication and calls FormsAuthentication.SetAuthCookie when the user has been validated, i.e FormsAuthentication.SetAuthCookie(userName, false).
I am currently ...
1
vote
3answers
172 views
How to prevent download of files to unauthenticated users
I have a website into which users log in using forms authentication, with a folder path from which I do not want any unauthenticated users (those users not logged in) to download files from. How can ...
1
vote
1answer
296 views
Deny authenticated users from a folder using FormsAuthentication
I am using FormsAuthentication to prevent anonymous users from accessing any content on my site, other than the pages within /pages/security - this folder contains the login page, forgotten password, ...
0
votes
1answer
147 views
How to record an automatic cookie login through C# FormsAuthentication
I'm using FormsAuthentication in my C#.net application and am appending to a database table every time the user logs in, to record their login time, shortly before calling ...
0
votes
1answer
205 views
Reading value from using FormsAuthentication.SetAuthCookie Method
There is a Cookie created by using this method, which the real value being stored is:
87B0B98C-3108-4367-B8EF-5A7D35F65E1D
But the actual value shown in the cookie is:
...
0
votes
1answer
549 views
ASP.NET Authentication cookies (Web Farm)
I use FormsAuthentication
I have a web farm with 2 nodes. What I do :
1) I log-in to my site by means of my factory through 1st node and go to default page.
2) I switch off 1st node, so next ...
0
votes
1answer
925 views
Testing Account/Logon Action
I'm testing the Account/Loggon action using the built-in testing tool of Visual Studio 2010 and the class library from this article to create a fake controller context.
When I run the test method, ...
0
votes
1answer
124 views
Authentication not lasting for the user session
My website is constantly forcing me back to the logon page (authentication issue) in between requests.
My local website works just fine and is the same exact code. There is no authentication ...
1
vote
1answer
144 views
ASP.NET MVC 2 using Authentication
Here is my problem if i can call it that way.I have implemented authentification with custom memebership provider in asp.net mvc 2.0.Everything works well but i have one problem.When user log in he ...
0
votes
0answers
57 views
Forms Authentication search by username and email address
I am using forms authentication and have provided a couple of searh boxes to allow searching by username and email address.
So, I can do this to search by name
Membership.FindUsersByName(username, ...
0
votes
1answer
854 views
Getting Forms Authentication from an ASP.NET logon page used by Silverlight 4 application
This is supposed to just work. I've read all the articles I could find via google on the topic, tried to copy as much as I could from other articles on both StackOverflow and CodeProject and others, ...
0
votes
1answer
244 views
Asp.net FormsAuthentication UserName, ID, GUID
We are using FormsAuthentication with custom MembershipProvider and custom RolePrivoder. For our Users we have a unique UserName, ID (mssql auto-key) and a GUID (all three unique).
I'm not sure which ...
0
votes
1answer
166 views
asp.net membership hierarchy?
Hi i was just wondering how to implement a membership hierachy of sorts..
For example:
Headmaster
-- Teacher1
-- student
-- student
-- Teacher2
-- student
-- student
I was hoping to ...
2
votes
1answer
427 views
Using FormsAuthentication.SetAuthCookie to store an Encrypted String
I'll start by saying, maybe this is overkill.
During my login routine, I encrypt the user's login id prior to using FormsAuthentication.SetAuthCookie.
The problem is that if the encrypted string ...
0
votes
1answer
964 views
MVC 3 FormsAuthentication Not working when deployed
I have an MVC 3 Application that works fine in my dev environment (you
must have heard that before..) I am deploying it to a free hosting
service http://somee.com for testing, the .NET framework is ...
1
vote
2answers
471 views
How to access the FormsAuthentication ticket in an .ashx handler when Using Uploadify?
I have an ashx handler and I would like to check that the user trying to access it through a JSON call actually has a forms Authenticated session. Is this possible?
2
votes
1answer
108 views
Formsauthentication should be disabled for a single page
I have a problem with Formsauthentication and my ajax calls.
I like the way Formsauthenticaction works for a normal asp.net website.
However I have a page in my asp.net website which gets called ...
1
vote
1answer
539 views
How to use FormsAuthentication with logins stored in SQL Server DB table?
I am making a new web application in ASP.NET (in C#) using FormsAuthentication for the login. A standard FormsAuthentication setup is in place currently, with usernames and passwords specified in the ...
0
votes
1answer
1k views
Why is ASP.NET FormsAuthentication cookie not authenticating user?
I have a site that uses the default SqlMembershipProvider and FormsAuthentication. I can use the built-in Login Controls and/or programmatically call all the methods to authenticate a user and get the ...
1
vote
2answers
123 views
Prevent a page or handler from updating the FormsAuthentication ticket
I have several apps on a single domain that share the formsauthentication ticket for single sing-on. We also have javascript on each page that will warn the user 2 minutes prior to his session ...
2
votes
1answer
112 views
Forums Authentication SignOut not working when generating html as string to literal
I am trying to create a logout button through dynamically generated HTML (string).
htmlGen = "<div class=\"issue\" style=\"float:right; width:70%;\">";
htmlGen += "Welcome, " + ...
7
votes
1answer
2k views
FormsAuthentication.SignOut throwing NullReferenceException
This problem seems related to this post, but I was not able to infer a solution from the thread.
I noticed this code in an application I inherited (after noting in a log file that an exception was ...
0
votes
2answers
164 views
Transfer instead of redirect to login in forms authentication
I give to google a sitemap with all my pages, when the crawler tries to access them he gets redirected to the login page.
In the login page I write an explanation of what the page does so the crawler ...
0
votes
2answers
483 views
Can I Create an HttpHandler that never participates in Forms Authentication?
I've created a logout handler that is registered to Logout.aspx in my web.config. I want this to be able to be run from any path. It works great. My master page registers a client script function that ...
0
votes
2answers
122 views
What inputs go into encrypting / creating an ASP.NET Forms Authentication Ticket?
Everything I read points to the MachineKey element in the web.config file being the only thing that determines the encrypted ticket value, but I have a lot of evidence to contradict that at the ...
0
votes
1answer
325 views
How to perform membership provider authetication using the WCF?
I am extending an ASP.NET application to provide web services using WCF. I have to use WSHttpContextBinding so the application can keep track of the user's session. So far I've been successful in ...
2
votes
0answers
573 views
Windows Phone 7 - Authenticate with Asp.net forms authentication
I've set up a service to get asp.net forms authentication working for connection from my windows phone...
Everything is working great in the emulator ( remote connection to login and after that use ...