membership-provider

Managing App Users/Groups in a iPhone App

Hi All, I'm looking at managing user groups in an iPhone App. The App is connected to a WebServer. I'm therefore looking at using ASP.net Membership Provider to store/manage User Info. (We may just make a simple custom table to manager end users). I have not seen a native User Management framework in iphone SDK. Anyone have a better su...

How to get security question answer in .net sql membership provider?

Hi, Is there any way to get form code level security question answer in .net SQL Membership Provider? I'm struggling with allowing user to have change password reset and change features using the same provider. Do anybody knows how to do that? Or if I would like to use question and answer feature it means that I automatically have to us...

Adopting the "aspnet_ ..." sql tables from ASP.NET MVC

Hi everyone, 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 bunch of tables with "aspnet_" prefix. Part of them deal with the built-in user accounts and permission support. Now, I want t...

Is using Linq to SQL in a MembershipProvider implementation safe?

I'm creating a custom MembershipProvider for an ASP.NET MVC website, and I was planning on using LINQ to SQL for the internals, as I am for the rest of the website. Are there any issues with this, specifically any security issues it causes? ...

SqlMembershipProvider: use my own database as user store database

Hello. I'm developing an ASP.NET application with Visual Studio 2008 SP1 and C#. I'm also using Sql Server 2008 SP1. I'm trying to add the tables created with the command aspnet_regsql -S (local) -E -A m to my own database. If I run that command it will create a database (Aspnetdb database) with four tables. I want to know if there is...

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 incorrect schema. <authentication mode="Forms"/> <roleManager defaultProvider="MySqlRoleProvider" enabled="true" cacheRolesInCook...

ASP.NET ChangePassword and PasswordRecovery not sending emails

Hi, I am using the ASP.NET membership provider controls (ChangePassword and PasswordRecovery) and they generally work just fine. Unfortunately they don't send any emails once the process is finished. I set up the SMTP server using the ASP.NET Configuration Website and it added the following lines to the web.config: <system.net> <mai...

Custom MembershipProvider attempts to pass empty creds after IIS restart

I have a C# custom ASP.Net MembershipProvider. When the user attempts to navigate to another part of the site after IIS is restarted, it doesn't navigate to the login page to collect credentials, but instead attempts to authenticate with empty credentials. Can anyone tell me what I have to do to identify that the new authentication n...

iPhone: membership

hi all, 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 ...

How to edit the user details stored in aspnetdb without asp.net web administration tool?

I have asp.net MVC application which uses asp.net membership. I configured the user details from local system using Asp.Net web site administration tool. Now I have deployed the site in server and I need to change the password. Now I have the ASPNETDB.MDF file in the App_Data folder. How to edit the details? ...

Tutorial on creating your own OpenId provider using dotnetopenauth?

Has anyone found a tutorial on how to create Your Own OpenId provider using dotnetopenauth? I'm not just looking to be a consumer of other openId providers. ...

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

Hi, 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 development I have to switch to various databases, for different development and testing scenarios. For this I have an external connection st...

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: <system.web> <membership> <providers> <remove clear /> <add name="MyOwnProvider1" .... /> <add name="MyOwnProvider2" .......

asp.net membercontrols Instruction text property in ChangePasswordTemplate

Hi, I want to do the following in my page_load: if (condition) ChangePasswordControl.InstructionText = "......"; However, I am using a ChangePasswordTemplate which when generated doesn't include an <asp:Literal ID="InstructionText runat="server" /> or similar. Can anyone suggest how to conditionally include instructions in the temp...

What does Provider mean in asp.net ?

Hi I've got confused . We hear a lot about Provider in ASP.NET . Membership-Provider , Role Provider , XmlDataProvider ,CustomProvider, .... What are those and why we need them in ASP.NET ? ...

ASP.NET Membership Provider password configuration

How can I set up membership provider to only accept passwords that adhere to the following rules: Minimum 6 characters Contains at least one letter and number Should be case sensitive ...

ASP.NET Membership - keep users to use previous passwords

I created a Membership login system for my client, now they do NOT want the user to use one of his 5 last passwords when it comes time to create a new one. Is that something that is build in or how could I accomplish that? Thank you, Steve ...

membership provider

Hi, I am a new guy in Asp.net. I have one requirement of doing one asp.net application with Custom Membership provider. If you any source code of the same, please share with me. I searched alots in net. but i couldnt understand completely yet. Please help me.. ...

ASP.NET Membership Password Reset

This is crazy, I have been trying for hours to get this to work. My client wants to be able to reset password for uses who have forgotten them The only parameter he has is the UserName. He does NOT want the user to be able to reset the password themselves, no that would be too easy...ARGHHHHH!! Anyway, if anyone has any suggestions how...

ASP.NET: Where can I find a fast custom membership provider

is there any custom asp.net membership providers that someone has already created online. I want to use a custom provider because their role provider is very sluggish and I would like to use integers instead of guids for user IDs ...