Tagged Questions
The sqlmembershipprovider tag has no wiki summary.
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 ...
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 ...
7
votes
7answers
2k views
Do most people use .NET's SqlMembershipProvider, SqlRoleProvider, and SqlProfileProvider?
Do most people use .NET's SqlMembershipProvider, SqlRoleProvider, and SqlProfileProvider when developing a site with membership capabilities?
Or do many people make their own providers, or even their ...
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)
{
...
5
votes
1answer
113 views
ASP.NET SQL Membership Tables
What's the best way to tie my tables (like Customer, Orders) to the Users in the membership tables. Is there a way to tie it using an int somehow?
4
votes
2answers
379 views
How to join with LinQ to (typed) dataset?
i recently upgraded VS 2005 to 2010 and am fairly new to LinQ. Maybe somebody can put me in the right way.
Background:
I have a typed dataset and have the standard SQLMembershipProvider extended ...
4
votes
1answer
365 views
Trying to compare password history to hashed passwords created by SqlMembershipProvider
I am using a SqlMembershipProvider and storing my passwords as hashed. I am also keeping a history of the (hashed) passwords in another table. I want to be able to compare the password a user tries ...
4
votes
1answer
505 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
614 views
Bad crypto error in .NET 4.0
Today I moved my web application to .net 4.0 and Forms Auth just stopped working. After several hours of digging into my SqlMembershipProvider (simplified version of built-in SqlMembershipProvider), I ...
4
votes
3answers
1k views
Where do I store additional user details using ASP.NET MVC and the SqlMembershipProvider?
So, I'm creating an ASP.NET MVC website.
It has a fairly complex user sign-up page with a lot of fields. My question is, where should I persist this? The user tables created by the ...
4
votes
4answers
2k views
Is there an open source Asp.net membership administration GUI (like netwebadmin, but works online)?
Visual studio 2005 comes with a project that lets you use the asp.net membership provider to look up, add, edit, and delete users and roles. It unfortunaltly can't be used online, and in order to have ...
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
2answers
581 views
Hashing no longer works in .Net 4.0 despite MSDN workarounds
I have an existing app in production that uses SqlMembershipProvider and has a specified machine key:
<machineKey validationKey="..." decryptionKey="..."
validation="SHA1" ...
3
votes
2answers
361 views
ASP.NET membership/SQLMembershipProvider Source Code
In the SQLMembershipProvider source for ASP.NET membership, there is a custom exception, MembershipPasswordException.
The definition of it is not part of the source, but when I do a goto definition ...
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 ...
2
votes
1answer
76 views
How can I block the same user from logging in on another machine?
I basically want to setup in my LogOn Action a conditional statement that looks at the username, and determines that username is already logged in.
At which point the user should be informed.
That ...
2
votes
3answers
142 views
How do I associate my application data to a user in a ASP.NET MemberShipProvider?
I'm just starting out learning ASP.NET MVC. I'm working on a project created with the standard project template which by default uses a SqlMembershipProvider. This has automatically created a ...
2
votes
1answer
662 views
Where did aspnetdb.mdf come from in my ASP.NET MVC Application?
I'm new to ASP.NET and have just starting to learn ASP.NET MVC 3. I've started a new ASP.NET MVC 3 project using the default template, which already has most of the membership stuff already ...
2
votes
2answers
224 views
Invalid Cast Exception calling SqlMembershipProvider GetUser
I am implementing authorisation on a web application using the ASP.NET SqlMembershipProvider, but it is randomly throwing an invalid cast exception when calling the GetUser method.
I can log in, and ...
2
votes
1answer
515 views
How can I create a user for ASP.Net/Umbraco SQL Membership from iPhone and WCF?
So I have been struggling for days now, trying to simply create a new user with a WCF Service using Umbraco's Membership Provider. Can someone tell me if I'm out of my mind, if this is impossible to ...
2
votes
4answers
461 views
How to add users and roles in SQL for the SQLMembershipProvider?
We are migrating to the production environment, and I want to write a sript the the DBA can create a user with the roles immediately after running the script I've generated with aspnet_regsql. In the ...
2
votes
2answers
297 views
Can DotNetNuke use another database with existing tables for ASP.NET default membership provider?
We have a case where a web site already exists and is using ASP.NET default membership provider storing Users' data on a SQL Server database.
I need to add a new DotNetNuke site that can share the ...
2
votes
2answers
184 views
Question: Authentication using SQL Membership Provider
I have checked the following article on how to use the sqlMembershipProvider. My question, is this the way most of the asp.net applications authentication schemes implemented.
Is there any other ...
2
votes
2answers
84 views
Is a .Net membership database portable, or are accounts somehow bound to the originating Web site or server?
I have an ASP.Net Web site using .Net Membership with a SQL Server provider, so the users and roles are stored in the SQL tables created by Aspnet_regsql.exe.
Is this architecture totally ...
2
votes
3answers
718 views
Can I configure the ResetPassword in Asp.Net's MembershipProvider?
I have an C# asp.net app using the default Sql MembershipProvider. My web.config has a few settings that control how I'm using this Provider:
enablePasswordRetrieval="false"
...
2
votes
1answer
700 views
Can't get a custom Membership Provider to work with Sitecore 6
I followed the directions in the Membership Providers document provided by Sitecore, but I was unable to get my membership provider to work correctly.
Specifically, in the web.config, I changed the ...
2
votes
1answer
265 views
Asp.Net Membership Password Resets without symbols
I'm using the asp.net Membership Provider in an application.
I'm also using the "out of the box" asp:PasswordRecovery control.
My client is complaining that the new passwords being issued are too ...
2
votes
1answer
318 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
3answers
469 views
Extending ASP.NET Membership Provider, PK == FK == OK?
I'm using the SQLMembershipProvider and want to add a load more info about the users. It the best way to do this to create a new DB and make an entry for each new user as they are created? If so, is ...
2
votes
2answers
1k views
Windows authentication & SQL Membership services
I have an ASP.Net MVC intranet site which uses Windows Authentication to know who is logged in (no anon browsing allowed). The first time the users visit, I collect some very basic information from ...
2
votes
3answers
2k views
Making user login persistant with ASP .Net Membership
I have a website that is built in ASP.NET 3.5 & SQL Server 2005, using the sql membership provider, and presumably forms authentication.
Since security needs on my site are very low, I would like ...
2
votes
1answer
1k views
SSO across different domains
How can I implement single sign on across domains?
I have two or more domains and I want all of them to authenticate through one server using SqlMembershipProvider (ASP.NET 2.0 membership database)
I ...
2
votes
4answers
1k views
ASP.NET sessions timing out using SQL Membership Provider
I changed over from the in process membership provider to the sql membership provider to stop people losing their sessions when the website process recycled, but sessions still seem to time out.
Are ...
2
votes
2answers
362 views
SqlMembershipProvider administration
Before I embark on writing my own solution to this issue, can anyone point me to a pre-built solution for managing standard user details when using the SqlMembershipProvider? The solutions I have ...
2
votes
3answers
2k views
SQLMembershipProvider - source code
Where can I find the source code for SQLMembershipProvider (.NET2.0)?
Is it available?
2
votes
4answers
2k views
SQLMembershipProvider - Adding membership to an existing database. Setting permissions
I am adding membership-related schemas to an existing database (lets call it myDatabase) following those instructions.
As a results the number of tables, views and stored procedures are being created ...
1
vote
1answer
66 views
Develop a .net custom membership provider for facebook
I have an mvc website that is using the asp.net membership database.
I am wanting to enhance the website to allow users to use their facebook details to log into my site.
I use the database for ...
1
vote
1answer
129 views
Multi Tenant SQLMembershipProvider ASP.NET MVC
I am trying to move to Azure (including SQL Azure) with a multi-tenanted ASP.NET MVC application. Each customer gets their own database which is self-contained, including all of their membership ...
1
vote
0answers
12 views
SQLASPMembershipProvider not connecting to Database
I have created a web app using the SQLASPMembership provider and and everything works fine off my development machine. However when I publish it out to the web server it fails to connect to the ...
1
vote
1answer
79 views
using login controls with sql server (not express)
I installed Visual Studio 2008 Professional(updated with SP1), then I uninstalled SQL server 2005 Express and installed SQL Server 2005 Standard.
now I am not able to add 'SQL Server Database' to ...
1
vote
1answer
95 views
Migrating from SqlMembershipProvider to Custom Provider
Here's the scenario:
I have used default SqlMembershipProvider to implement membershp on a website. Now I'd like to migrate to my custom membership provider. (FYI the provide I use is CodeFirst ...
1
vote
1answer
200 views
Approve multiple applications with single sql membership provider
I have an asp.net application that uses the SQL membership provider. I know how to get multiple applications using the same membership provider so a user can go to multiple sites and login using the ...
1
vote
2answers
147 views
ASP.NET SqlMembership Provider allow multiple users with same name
I have a web application that is kind of a hub for different companies. Each one of these companies will be allowed to manage (create/delete) its own user.
If there are thousands of companies using ...
1
vote
0answers
135 views
ASP.net MVC application logging out very quickly after logging in
This is probably a very simple problem but I cant see the solution and its really beginning to bug me!
I have a simple ASP.Net MVC2 application which is intended as a learning aid which requires ...
1
vote
2answers
438 views
Multiple membership providers in ASP.NET (web.config + sql)
I know this question is asked (and answered) a lot already, but I believe my situation is unique.
We are using the ASP.NET SqlMembershipProvider. However, we also have some less-secure content we ...
1
vote
1answer
177 views
SQLMembershipProvider source code compatability with latest mvc
I got the source code from here
http://weblogs.asp.net/scottgu/archive/2006/04/13/442772.aspx
is it compatible with latest ASP.net MVC 3?
1
vote
0answers
122 views
C# WCF ClientCredential usage
I'm a beginner using WCF Service, and I'm trying to understand how the ClientCredential methods work. I am able to successfully use authentication using wsHttpBinding and SQLMembershipProvider.
...
1
vote
1answer
187 views
Membership Provider to Allow Social Networking Sites Login
I recently created a custom membership provider to my asp.net (4.0) site and a custom role provider so that I have total control over custom attributes or properties for members of my site. BUT, I ...
1
vote
2answers
336 views
ASP.net login control membership provider
Just 2 days ago I got to learn log-in controls and forms authentication in ASP .NET.
Before then I used to create my own database my user table and my own logic for log-in and log-out using sessions ...
1
vote
1answer
571 views
C# MembershipUser.ChangePassword fails for one user only?
I'm using the change password feature of the standard AspNetSqlMembershipProvider in my ASP.NET MVC-2 app:
MembershipUser user = Membership.GetUser(userId);
string pwd = user.ResetPassword();
if ...