Tagged Questions

ASP.NET membership gives you a built-in way to validate and store user credentials.

learn more… | top users | synonyms (1)

46
votes
7answers
15k views

How to assign Profile values?

I don't know what I am missing, but I added Profile properties in the Web.config file but cannot access Profile.Item in the code or create a new profile.
27
votes
8answers
2k views

Which authentication and authorization schemes are you using - and why?

We're beginning to design a whole bunch of new services to create (WCF, ADO.NET Data Services, possibly in the cloud at some point) and one question that pops up is what authentication and ...
20
votes
4answers
2k views

Microsoft Membership Provider Vs Custom Provider Vs Complete Custom Login System

I am currently converting a very old, but working classic ASP site to ASP.Net. It has a completely custom written user management system. Whilst it works fine, it really needs a refresh as I want it ...
16
votes
5answers
3k views

How to implement ASP.NET membership provider in my domain model

In a website, I need to integrate membership and authentication. So I want to use the functionality of ASP.NET Membership, but I have other custom stuff, that a "user" has to do. So I am sitting ...
15
votes
6answers
3k views

ASP.NET MVC - Alternative to Role Provider?

I'm trying to avoid the use of the Role Provider and Membership Provider since its way too clumsy in my opinion, and therefore I'm trying to making my own "version" which is less clumsy and more ...
15
votes
2answers
5k views

How do I setup ASP.NET MVC 2 with MySQL?

Is it possible to setup ASP.NET MVC 2 to work with a MySQL database?
15
votes
12answers
999 views

When is it a good idea to store passwords in clear text?

I am working on an application that is targetted at non technical users. I expect a large number of support calls regarding lost passwords and inability to login. I am using ASP.NET membership ...
13
votes
3answers
2k views

How to allow multiple authentication methods in ASP.NET?

I'm building a new ASP.NET MVC application (in C#) and one of the requirements is to create a new database of members. For this, we'd need roles to manage the different types of members and profiles ...
13
votes
3answers
1k views

Associating extra information with ASP.NET MVC Membership

I am not sure if I should do this any different with MVC, but I am curious what is the recommended approach for adding extra info to a ASP.NET User account when using the Membership provider? Also how ...
13
votes
2answers
4k views

ASP.NET Membership Provider with Confirmation email

Is there any framework/library for using ASP.NET Membership Provider with confirmation email, something ready to be used ? Standard functionality used on almost all public web sites.
12
votes
3answers
390 views

Google Ads doesn't support HTTPS. What alternatives are there?

It's pretty well known that Google Ads doesn't support HTTPS, but since I store my user's session in a bearer token/cookie I feel the need to encrypt this information... at a minimum so I can protect ...
12
votes
1answer
826 views

Using OpenID (via DotNetOpenAuth) along with user roles and other Membership Provider features in ASP.NET MVC

I'm building an ASP.NET MVC site where I want to use DotNetOpenAuth to implement OpenID login (I'm completely dropping username/password-based login). So far, I've been writing my code for the ...
12
votes
5answers
2k views

Is it possible to change the username with the Membership API

I am using the default sql membership provider with ASP.NET and I would like to provide a page to change the user's username. I believe I am sure I could do this with a custom provider, but can this ...
11
votes
2answers
298 views

Enlisting System.Web.Providers in a TransactionScope

We are trying to integrate the System.Web.Providers membership management into a transaction using System.Transactions.TransactionScope and keep getting the following error message: The operation is ...
11
votes
4answers
11k views

ASP.NET authentication login and logout with browser back button

I am looking for a solution for user use the browser's back button to navigate to previous page once logged out. I have a web application build in asp.net and using a custom membership provider for ...
11
votes
1answer
2k views

How do you handle Membership/Roles when using NHibernate?

I'm about to kick off a new project using NHibernate and ASP.Net MVC and have come upon the question of membership. I'm wondering if I should use a 3rd party NHibernate Membership/Role provider, ...
11
votes
5answers
4k views

Can you use the asp.net membership provider in a windows application?

The Asp.Net membership provider has some clear uses in a web app. I am thinking about trying to leverage some of the features in a windows application (more specifically WPF). Does anyone know if it ...
10
votes
4answers
3k views

Integrating Facebook Authentication with existing ASP.NET Membership

Coding Platform: ASP.NET 4.0 WebForms with C# We have a website with the existing login details managed by ASP.NET Membership Provider. Now client wants to add Facebook Connect to it. So on ...
10
votes
9answers
804 views

Is *not* using the asp.net membership provider a bad idea?

Is it generally a really bad idea to not use the built-in asp.net membership provider? I've always rolled my own for my asp.net apps (public facing), and really have not had any problems in doing ...
10
votes
4answers
2k views

ASP.NET MVC redirect to an access denied page using a custom role provider

I'm creating a custom role provider and I set a Authorize attribute specifying a role in my controller and it's working just fine, like this: [Authorize(Roles="SuperAdmin")] public class ...
10
votes
3answers
20k views

Why is <deny users=“?” /> included in the following example?

(?) wildcard represents unauthenticated users while (*) represents all users, authenticated and unauthenticated. My book shows the following example of URL authorization: <authorization> ...
10
votes
1answer
2k views

Disabling account lockout with the SqlMembershipProvider

How do I disable the account lockout feature of the SqlMembershipProvider? The MSDN documentation for the MaxInvalidPasswordAttempts property does not specify how to disable it. If I can't find the ...
10
votes
4answers
6k views

ASP.NET Application to authenticate to Active Directory or SQL via Windows Authentication or Forms Authentication

I am in the process of writing an application that will need multiple forms of authentication. The application will need to support authentication to Active Directory, but be able to fail back to a ...
9
votes
2answers
1k views

Available Membership Starter Kits / Membership NuGet Packages for ASP.NET MVC3?

I'm looking for a Membership starter kit / NuGet package for MVC3 to handle things like user management as well as Facebook Authentication and Twitter Authentication. The Microsoft.Web.Helpers seems ...
9
votes
3answers
931 views

ASP.NET Custom Membership Provider for very large application

I have to come up with a membership solution for a very large website. The site will be built using ASP.NET MVC 2 and a MS SQL2008 database. The current Membership provider seems like a BIG overkill, ...
9
votes
3answers
5k views

How to set Request.IsAuthenticated to true when not using FormsAuthentication.RedirectFromLoginPage?

I am using Form Authentication and sending an Aajx request to the server for authentication. Based on the json result, the client decides where to go and what to do. That is the reason I am not using ...
9
votes
3answers
2k views

Best practice to join nhibernate and ASP.NET membership/role/profile services

I've got a generic ASP.NET (MVC) application, that uses NHibernate as the model persistence layer, and ASP.NET Membership/role/profile services as the user management layer. The question is what can ...
9
votes
6answers
2k views

Implementing OpenID in ASP.net “Properly” - Membership or Authentication Provider?

There are several ways to use OpenID on ASP.net sites, but none of them seem to use the existing mechanism of Membership and Authentication Providers. I wonder what the proper way would be to create ...
9
votes
6answers
1k views

Alternatives to .Net Membership

Are there any alternatives\mods to .net Membership? I find it quite restrictive; Cant change Username, easily. You have to create a new user and copy the fields, but then you lose the primary key ...
9
votes
8answers
7k views

How do I call Initialize on a custom MembershipProvider?

I have read through all the related questions, but I still unable to get the right solution for some reason, something is not right on my side, but not sure what's causing it. I have created a Custom ...
9
votes
2answers
2k views

How should I implement user membership in my ASP.NET MVC site?

I'm creating an ASP.NET MVC site and I need to implement login and membership functionality. Is this something where I roll my own? I already have a members table in my database, should I create a ...
8
votes
1answer
2k views

Custom Authorize Attribute

I'm building my own membership system and I want nothing to do with the MS Membership provider. I've looked around the internet and here on StackOverflow but all I could found was membership providers ...
8
votes
1answer
426 views

Has anyone written or used a Asp.NET membership provider that integrates with Facebook Connect?

I'm looking to allow Facebook Connect logins on my site, but still want to capture some user information and store it in the Profile object. Would also like to allow standard login/pass ...
8
votes
8answers
796 views

.Net Membership in nTier App

Lets say I have an ASP.Net MVC App and this app (UI) references a Business Logic Layer (BLL) and the BLL references my Data Access Layer (DAL). I am utilizing a Custom Membership and Role provider ...
8
votes
3answers
1k views

Best Practice ASP.NET Membership: User tables in the same datastore?

Is it better to extend my business database with the tables of the ASP.NET Membership Security model. Or should I have a different datastore where I only manage Identities and Roles... Basically 1 or ...
8
votes
5answers
5k views

How do you manage asp.net SQL membership roles/users in production?

How do you setup an asp.net sql membership role/membership provider on a production machine? I'm trying to setup BlogEngine.NET and all the documentation says to use the ASP.NET Website Administration ...
7
votes
5answers
425 views

Custom membership or not

I am creating website (football, soccer) in ASP.NET MVC3 and I want have users (with additional information then user in default membership, these are ordinary visitors) and players which I think it ...
7
votes
3answers
3k views

EF Code First - Recreate Database If Model Changes

I'm currently working on a project which is using EF Code First with POCOs. I have 5 POCOs that so far depends on the POCO "User". The POCO "User" should refer to my already existing MemberShip table ...
7
votes
2answers
3k views

ASP.NET Membership Provider - Reset Password Features - Email Confirmation and Password Change

Does anyone has a solution (sample code) for the following features: Create a randomGuid/Cryptographically strong random number Send a unique URL containing the random number to the user's email ...
7
votes
5answers
1k views

Using the ASP.NET membership provider database with your own database?

We are developing an ASP.NET MVC Application that currently uses it's own database ApplicationData for the domain models and another one Membership for the user management / membership provider. We ...
7
votes
4answers
3k views

Admin pages to manage asp.net membership provider & Role management

Are there any open source projects that provide a front end to asp.net membership provider? Something like the one visual studio exposes through it configuration, but one that can be deployed on ...
7
votes
3answers
1k views

Resetting ASP.NET password - security issues?

I've seen various questions regarding this issue, but there are a couple of questions that haven't been asked. If the user forgets their password, I would like them to be able to reset it with only ...
7
votes
1answer
2k views

How would you use Entity Framework (1.0) with ASP.Net Membership?

I'm trying to design an entity model for an application that uses ASP.Net membership for it's user authentication. In most of the database schemas I create, records typically end up related to users ...
7
votes
2answers
5k views

ASP.NET MVC Custom Membership Provider Web.config Error

I have implemented a custom membership provider using LINQ to SQL. When I added the Membership provider to my asp.net mvc website in the web config the logon page stopped working. My Web.config ...
7
votes
1answer
184 views

Are there Custom ASP.NET Membership Providers for sale with added security?

Are there Custom ASP.NET Membership Providers for sale with added security? For example, the ability to have multiple Questions/Answers that are randomly presented for Password reset, set number of ...
7
votes
1answer
3k views

How to integrate IoC Membership provider with ASP.NET MVC

I have a custom membership/roles provider that I use in my MVC controllers that I also want to have accessible to ASP.NET MVC, so I can use AuthorizationFilters, etc. Since so many people have ...
7
votes
1answer
3k views

Inject a MembershipProvider into ASP.Net MVC AccountController

Asp.Net MVC 1.0 project templates include an AccountController class, which supports constructor injection: public AccountController(IFormsAuthentication formsAuth, IMembershipService service) { ...
7
votes
2answers
2k views

Relationship between MembershipUser and IPrincipal object

I assume MembershipUser object and object implementing IPrincipal interface are “connected” in a sense that when certain information in one of the objects changes, the other object is also changed ...
7
votes
3answers
3k views

Normalization of Strings With String.ToUpperInvariant()

I am currently storing normalized versions of strings in my SQL Server database in lower case. For example, in my Users table, I have a UserName and a LoweredUserName field. Depending on the ...
7
votes
3answers
2k views

How to best implement custom search on a Membership provider

Out of the box, System.Web.Security.Membership implements a couple of search methods: FindUsersByEmail FindUsersByName I'm using the WSAT project from CodePlex to administer my Membership ...

1 2 3 4 5 35