Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

33
votes
4answers
18k views

How do I create a custom membership provider for ASP.NET MVC 2?

How do I create a custom membership for ASP.NET MVC 2 based on the ASP.NET membership provider?
28
votes
2answers
8k views

How do you change a hashed password using asp.net membership provider if you don't know the current password?

Problem, there's no method: bool ChangePassword(string newPassword); You have to know the current password (which is probably hashed and forgotten).
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 ...
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
3answers
2k views

Dependency injection and ASP.Net Membership Providers

I am in the process of creating a custom membership provider for an ASP.Net MVC website. The provider is being created as a separate class as part of a bigger library. There is a need for the back-end ...
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, ...
10
votes
3answers
5k views

How do I setup a Membership Provider in my existing database using ASP.NET MVC?

For some reason, the idea of setting up Membership in ASP.NET MVC seems really confusing. Can anyone provide some clear steps to setup the requisite tables, controllers, classes, etc needed to have a ...
9
votes
3answers
571 views

Membership Providers and HIPAA Compliance

Does anyone know if the provided SQL and Active Directory Membership Providers in ASP.NET 2.0+ are HIPAA compliant? Clarification: I understand that HIPAA mandates patient information be secured and ...
8
votes
5answers
2k views

attribute for .net MVC controller action method

Essentially I want to show a friendly message when someone is not part of a role listed in my attribute. Currently my application just spits the user back to the log in screen. I've read a few posts ...
8
votes
1answer
5k views

Authenticate and GetRoles of ActiveDirectory users in a disconnected WPF application via MembershipProvider

I have a project requirement where I need to authenticate against ActiveDirectory in a remote/disconnected WPF application. There is probably several ways to attempt to do this, but what would be the ...
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 ...
6
votes
2answers
2k views

Membership, MembershipProvider and MembershipUser relations in ASP.NET?

I store user data in a MSSQL table called Users. What I want to is to have accessible all user's data for actually logged user (email, address, phone, if the user is subscriber etc.). I don't want to ...
6
votes
2answers
3k views

Custom MembershipProvider Initialize method

When overriding the MembershipProvider and calling it directly, is there a way to fill the NameValueCollection config parameter of the Initialize method without manually looking through the config ...
6
votes
3answers
1k views

Can I use OpenId with the ASP MembershipProvider?

I have a ASP.Net 2.0 website that is currently using a custom MembershipProvider and the standard login control. I would like to replace the login control with the one from DotNetOpenId. I override ...
5
votes
3answers
1k views

Custom MembershipProvider in .NET 4.0

There are a few threads here at so about this matter but most of them are outdated and the reference links in them are even more outdated. I got this website which I need to connect to an external ...
5
votes
2answers
100 views

protecting non .aspx pages with Asp.net Membership provider

I'm currently using the asp.net membership provider (with logins stored in db) to protect certain pages of my site. However, I also have non .aspx resources I wish to protect - word docs, excel ...
5
votes
3answers
565 views

ASP.NET Membership Provider - Single Login

I'm considering utilizing the ASP.NET Membership Provider for a few different web apps/tools with a single login approach. REQUIREMENTS User logs in to my.domain.com and sees a list of apps/tools ...
5
votes
3answers
1k views

Recommendation for third party Asp.Net membership providers

I am working on a web application that has strict security and auditing requirements (HIPPA stuff). So we are evaluating whether we should build our own custom membership and role providers or ...
5
votes
1answer
3k views

asp.net mvc and custom membership and role providers

My question, is it possible to build customer membership and role providers (overriding the asp.net providers) when using asp.net mvc? I am guessing it is possible but have not seen any information ...
5
votes
2answers
1k views

ASP.net Profiles and Membership - Custom Providers or should completely I roll my own?

first off, I know that this question could be borderline-duplicate to this one, and yes, it is a bit ironic that I am asking a question for something that I even answered myself. Now, I am talking ...
4
votes
4answers
141 views

How to avoid using membership provider?

We are currently building architecture for thin-client bookkeeping application. It should follow two main requirements: Application should have module design. Each module can have (and they actually ...
4
votes
1answer
504 views

SQL to create .Net Membership Provider users

I have a SQL script that creates users in in my database. It uses the .Net membership stored procs. At this point it works fine. The only issue is that the passwords are saved clear text. What ...
4
votes
2answers
154 views

Security approach in web application

I am designing a web application in ASP.NET / C# where each registered user has the ability to add/modify/delete rows based on their user-id. Take this example: I am going to edit my route on the ...
4
votes
3answers
3k views

How do I manually set a user's role in ASP.NET MVC?

This project I'm working on requires me to keep a local db of admin users and use an external db for regular users. Anyone who passes authentication in the admin db should be assigned the 'admin' ...
4
votes
3answers
2k views

Using SQL server 2008 for ASP.net 2.0 Membership provider

I tried to set-up the SQL tables for ASP .net 2.0 membership provider by clicking on ASP.net Configuration under Project. I have completely uninstalled SQL 2005 Express and installed SQL 2008 Express ...
4
votes
3answers
920 views

How do I create / use a MembershipProvider?

How do you create a MembershipProvider for use in an ASP.NET/MVC website? Doesn't it generate the tables it needs for you in your database?
3
votes
1answer
141 views

ASP.NET Membership - login works locally, fails on Azure

I'm working on an MVC3 site, and I've got a puzzling problem with ASP.NET Membership. I'm using System.Web.Providers 1.0.1 connected to a SQL Azure database. As it is now, the same username/password ...
3
votes
2answers
276 views

How to combine using Membership API with own application related data?

Designing a new application in asp.net 4 I have to make a decision how to use a MS SQL Membership API along with my own data in the MS SQL data base. Firstly I need to store and access user profile ...
3
votes
1answer
466 views

How do I architecture and implement custom membership provider?

I am trying to learn ASP.NET MVC. After reading through many articles on the web, I have put together a crude sample application that authenticates against an existing SQL database using custom ...
3
votes
3answers
459 views

ASP.NET Custom Role Provider - Additional Fields

I am faced with a security model problem when migrating my code to ASP.NET. In the application: There are multiple roles. (Role A, Role B etc) There are multiple input/output fields. (Field A, ...
3
votes
1answer
496 views

ASP.NET MembershipProvider encryption/decryption

I have some questions on the MembershipProvider in .Net that I have been unable to find clear answers to. What type of encryption is used, AES? The method EncryptPassword, can it handle any salt, or ...
3
votes
2answers
258 views

Using .NET membership provider throughout n-tier web app

I'm currently building an n-tier web application, mainly to practice new technologies and patterns - repositories, uow, services, ioc, ef4 and mvc3. After lots of hair-pulling I now have ef4 saving ...
3
votes
2answers
773 views

ASP.NET Membership/Role providers for Postgres?

I am creating an MVC site and would like to use the built in Membership and Roles for .Net. I'm using the the .Net Data Provider for Postgresql (Npgsql), but am having trouble defining the membership ...
3
votes
4answers
209 views

How can I implement an ID based user system (membership, authorization, etc.) in ASP.NET MVC?

I have been thinking for a good while about how to tackle the problem of implementing an ID based user system while using ASP.NET MVC. My goals, much like StackOverflow's system are as follows: ...
3
votes
3answers
667 views

Login control and custom membership provider

I am working on implementing a custom membership provider that works against an existing schema in my database and have a few thoughts/questions. The login control will automatically call the ...
3
votes
3answers
760 views

ASP.NET MVC2 and MemberShipProvider: How well do they go together?

I have an existing ASP.NET application with lots of users and a large database. Now I want to have it in MVC 2. I do not want to migrate, I do it more or less from scratch. The database I want to keep ...
3
votes
2answers
2k views

ASP.NET Membership - Need to add custom fields to admin screens

I need to add a Company Name field that is associated with the logins. Later on I need to incorporate that into my existing admin screens for reporting. I just can't figure out how to get this done. ...
3
votes
1answer
820 views

Multi tenant membership provider ASP.NET MVC

I'm building a multi-tenant app with ASP.NET MVC and have a problem with validating users. Situation I have: -a table with User(ID, Name, FirstName, Email) This table is made, so that a users who ...
3
votes
4answers
2k views

How to Display Validation Error Messages on an ASP.NET MVC Page?

I am pretty new to ASP.NET and C# I have spent the day learning the basics of the ASP.NET Membership provider I have built all my validator but are getting stuck at outputting my error message on the ...
3
votes
1answer
2k views

Error: Only LDAP Connection Strings are Supported against Active Directory

I have the following ASP.NET Membership section defined in the Web.config file: <membership defaultProvider="AspNetActiveDirectoryMembershipProvider"> <providers> <clear/> ...
3
votes
2answers
468 views

Asp.net override Membership settings at runtime (asp.net mvc)

I had an application that hooked onto 1 single database. The app now needs to hook into multiple databases. What we want to do is, using the same application/domain/hostname/virtual dir give the ...
3
votes
2answers
103 views

Can I use multiple MembershipProviders at one time?

I've got multiple membership providers in my web.config and in my login control, I am going to use the provider based on a drop down list with the name of the provider. Web.config: ...
3
votes
3answers
341 views

Searching for flexible way to specify connection string used by ASP.NET membership

I develop an asp.net web application and I use ASP.NET membership provider. The application uses the membership schema and all required objects inside main application database However, during ...
3
votes
4answers
3k views

Unable to initialize provider. Missing or incorrect schema. for MySql.Web connector

Hey guys and gals running into a little issue here.. I'm trying to use MySql Connector 6.2.2.0 for membership and role providers.. The issue I'm having is: Unable to initialize provider. Missing or ...
3
votes
3answers
225 views

Adopting the “aspnet_ …” sql tables from ASP.NET MVC

I'm just starting a new project on ASP.NET MVC and this will be the first project actually using this technology. As I created my new project with Visual Studio 2010, it created to my sql server a ...
3
votes
4answers
785 views

Getting an error when initialising the Membership.Provider for the first time after an app restart

We're using MS Commerce Server's Microsoft.CommerceServer.Runtime.Profiles.UpmMembershipProvider and sometimes where it gets initialised for the first time after an app restart we get this error: ...
3
votes
1answer
5k views

ActiveDirectoryMembershipProvider - “Unable to establish secure connection”

I am trying to configure an ActiveDirectoryMembershipProvider but I keep getting the message "Unable to establish secure connection with the server". I have seen online at the MSDN website that I ...
2
votes
2answers
27 views

How to return more detailed error when user cannot be validated

I am working on creating a custom membership class for my asp.net project. In the MembershipProvider class, function for user validation is defined as follows. public abstract bool ...
2
votes
2answers
24 views

Web Site Admin Tool changes do not reflect with datatbase using DefaultMembershipProvider

I have done hands full of project with AspNetSqlMembershipProvider. Now, I have asp.net website using DefaultMembershipProvider (Just updated from AspNetSqlMembershipProvider. I thought it is better ...
2
votes
2answers
36 views

How to effectively set up MySQL Users and Roles in the production server WITHOUT Visual Studio?

So far I have been using the WebSite Administration Tool built in Visual Studio 2010 to manage Users and Roles along with MySQL Membership and Roles Provider. Now, I have deployed the application to ...

1 2 3 4 5 8