Tagged Questions

10
votes
1answer
1k 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).
8
votes
3answers
224 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 …
5
votes
3answers
610 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 …
3
votes
4answers
99 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 …
3
votes
1answer
1k 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 …
3
votes
3answers
1k views

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

Hello, 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 …
3
votes
2answers
873 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 …
2
votes
2answers
16 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 …
2
votes
2answers
114 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 …
2
votes
2answers
226 views

Asp.net MVC - How can I get user roles without knowing these roles?

Hi! I'm working on this project that an admin user can create some User's Groups that will be working as the project roles. So, the admin will create a User Group named "SuperAdmin" and will select …
2
votes
2answers
289 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' …
2
votes
1answer
174 views

Membership.CreateUser issue

There is an issue reported here http://stackoverflow.com/questions/481416/asp-net-membership-issues-with-registration which summarizes a situation I am experiencing. I'm not sure I understand the …
2
votes
2answers
79 views

How do I change the security paradigm for the MembershipProvider?

I'm wrestling with building a custom membership provider that allows me to have the security scheme I need. I have my own IPrincipal, IIdentity, and MembershipProvider. I have the authentication …
2
votes
3answers
400 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?
2
votes
1answer
389 views

Extend Membership API, MembershipUser

I created my own database schema to store user information. CREATE TABLE [dbo].[MyCustomMembership_Users]( [UserId] [uniqueidentifier] NOT NULL, [UserName] [nvarchar](256) NOT NULL, [LoweredUserName] …

1 2 3 4 5 6 next
15 30 50 per page