Questions tagged [membership-provider]

Membership providers provide the interface between Microsoft ASP.NET's membership service and membership data sources. ASP.NET 2.0 ships with two membership providers: SqlMembershipProvider, which stores membership data in Microsoft SQL Server and SQL Server Express databases ActiveDirectoryMembershipProvider, which retrieves membership data from Microsoft Active Directory

987 questions
-1
votes
1 answer

Finding active Membership Provider and ensure its availability in Sharepoint 2010

How to find out what is the current active Membership Provider and see if it's available?
Arman Fatahi
  • 1,705
  • 3
  • 19
  • 33
-1
votes
1 answer

ASP.NET Membership Registration

I am trying to implement the asp.net membership registration but getting quite tired of it not working. Is there any really simple tutorials for this. Is it easier just to implement my OWN registration tables for usernames and passwords or is it a…
Bob
  • 1
  • 1
-1
votes
2 answers

Login to different active directories programaticly in c#

The company that I work for has two active directories (ad1.com, ad2.com) because it has two different stores that had nothing to do with each other and plenty of users but now the managers of both stores need a page in common. So I need to create a…
Seichi
  • 261
  • 4
  • 11
-1
votes
1 answer

asp.net identity membership saving both email and username for a user

I would like to know if its possible to save email as part of the identity model for asp.net identity and also if its possible to save both email and username. I'm able to create account, save username/password but I'm not sure if I can save email…
-1
votes
2 answers

In Membership table update password with UserId

I used Membership provider to my application, and also Created Admin Panel to my application and In admin panel showing all Users that are registered to my application in a dropdown and Allowing admin to Edit,Delete For Delete an user I used this…
A R S
  • 33
  • 1
  • 15
-1
votes
1 answer

Are ASP.Net membership credentials portable?

Why are ASP.Net membership credentials stored in a database not portable between (1) web apps and (2) machines? Two scenarios -- We backup the production database and restore it to the development server. None of the production login credentials…
Deane
  • 7,649
  • 9
  • 51
  • 102
-1
votes
1 answer

aspnet personalization

I need help to configure app with access as default provider for aspnet personalization.
-1
votes
1 answer

Can I add a column to Membership Provider's tables to store a user's face picture?

Should I add a column to users table to store user face pictures? Or should I create a new table to save face pictures?
-1
votes
1 answer

Getting MinRequiredPasswordLength from AD configuration C#

I want to know the MinRequiredPasswordLength that is configured in AD. Because when I debug: Membership.MinRequiredPasswordLength it always returns '7' and in AD it's configured to 8. I know that this property can be changed from web.config (I…
-2
votes
1 answer

Logging into FormsAuthentication With Email Address Causes Redirect To Not Work

I have an asp.net/c# app that is using MembershipProvider and FormsAuthentication to verify a user is in Active Directory, creates a cookie and redirects back to the page they came from. If the user logs in with their userID (active directory cn),…
-2
votes
1 answer

iPhone: membership

in .Net we can use membership provider See Membership provider Whether there are any equivalent in iPhone or is it possible to access these provider through iPhone API
Rupesh
  • 7,566
  • 11
  • 38
  • 55
-4
votes
1 answer

Custom membership in ASP.NET MVC error

I tried to implement own membership in asp.net mvc by inheriting from base class. public override void CreateUser(string username, string password) { this.repository.CreateUser(username, password); } But, when I tried to build the…
1 2 3
65
66