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 ...

learn more… | top users | synonyms

0
votes
0answers
6 views

Umbraco: assign member type dynamically

How can I assign the correct provider/ member type to a new member created in code behind? I have 2 types of Members in my umbraco. I want to create multiple members dynamically and need to choose ...
0
votes
0answers
12 views

.net 4.5 Web.Security.Membership.Providers remove throws system.notsupported exception. Why?

In order to get a better understanding of how to wire in auth functionality in .net MVC4 application, I thought I'd take apart the website that the 'Internet Application' template produces. ...
2
votes
1answer
23 views

ASP.NET Membership: Custom Profile Inheritance

I'm using ASP.NET MVC4, I've setup a custom profile class as described in this article about universal membership providers public class CustomProfile : ProfileBase { public DateTime? Birthdate ...
0
votes
0answers
12 views

Custom Membership Provider for multiple project

I'm implementing custom membership provide using default ASP.NET Membership provider.Now i have this problem. In here 1 User Login.User allocated to Several projects,The problem is Users rights needs ...
0
votes
1answer
34 views

Why CustomRoleManager Initializer not run in Web API?

I created custom membership and custom role provider follow exact same this link: for custom membership: http://msdn.microsoft.com/en-us/library/6tc47t75(v=vs.100).aspx more info: ...
0
votes
1answer
23 views

Out-of-box membership provider for asp.net

Is there any out-of-box membership provider for asp.net? or is there any tutorail for createing one? my problem is that i cant do any change to asp.net membership and i need some change on it ...
1
vote
1answer
12 views

Mapping nJupiter to a internal LDAP server

I am trying to use nJupiter LDAP Membership provider for an internal Tivoli based LDAP server. I can log on with the userid, which in our case is a combination of country code and serial #, but would ...
1
vote
1answer
24 views

How to use default membership provider when MVC is communicating to db through WCF?

My MVC application is consuming a WCF service to interact with the database. That means, a controller action is calling a WCF operation to perform SELECT or CRUD operations in database. However, I ...
-4
votes
1answer
61 views

CREATE DATABASE permission denied in database 'master' [closed]

i am getting following error when i run my application on domain server. the application runs fine in local machine. Please help. Thanks in advance CREATE DATABASE permission denied in database ...
0
votes
1answer
108 views

asp.net mvc 4 websecurity two step login

i have created asp.net mvc 4 internet app. As you know, there is standard method of authorization there through websecurity.login inside login action AccountController if (ModelState.IsValid ...
0
votes
0answers
33 views

create jquery dialog box on login.aspx page

I am trying to create jquery dialog box on login page with asp:login control on the page. Dialog box works fine without asp:login contorl on the page. But, with the control there is an error ...
5
votes
1answer
61 views

How to make foreign key from Membership's users table to custom table in code first approach in MVC 4?

I am creating a MVC 4 application in Code First approach and using DefaultMembershipProvider and DefaultRoleProvider, but I am getting a problem in making foreign key of membership's users table to ...
0
votes
1answer
35 views

how to add custom parameters to membership create user wizard?

I am really confused right now. Ive read some solutions to this problem, but every single one is different.... some people say that web applications projects and web site projects need different ...
1
vote
1answer
46 views

ASP.NET MVC membership - user being logged out frequently - don't know why

I have an ASP.NET MVC 4 web application. Running locally, it works fine, but on the web host (which uses shared hosting), the logged on user is frequently logged out by being redirected back to the ...
0
votes
2answers
64 views

Use OAuthWebSecurity With MVC 3.0 with custom membership provider

I am looking for how can I implement OAuthWebSecurity with Mvc 3 I have a custom membership provider and I would like to add Facebook, Google and Twitter authentication to my website. Authentication ...
0
votes
0answers
56 views

Asp.net mvc membership always return false in `ValidateUser`

Question#1 I have my running site on mvc3 now i decided to make copy of that and create a new project after that i copy all logic which i want to move in Account Controller of new project now when i ...
0
votes
0answers
24 views

Create a membership and roles when System.Web.Providers initializes the database

I am trying to use Using System.Web.Providers in my ASP.NET MVC 4 application. So, I would to like to insert all roles for my web app automatically when providers creates the database, with some ...
0
votes
1answer
50 views

Dotnetopenauth with webservice backend instead of database

I'm planning to add OpenAuth authentication to an existing asp.net webforms application with a custom membership provider. That is not a problem of what I have seen on the net ...
0
votes
1answer
53 views

ASP MVC Membership without a database

Is it possible to use WebSecurity or SimpleMembersshipProvider without a database? This is mainly because my web server would be consuming all the logic from a "central server" instead of accessing ...
0
votes
1answer
44 views

How can i use the same encryption that asp.net mvc4 uses?

Yes hashing is better but.... So I knew i would regret this but here we go. I started a new project and decided I would use the built-in Microsoft membership stuff in MVC 4 (BasicMembership) so that ...
0
votes
0answers
39 views

ASP.NET Membership and Role Provider dont access in intranet

I have an application with ASP MVC with Membership and Role Provider on an intranet, when I access the application from the server, the application authorizes me to use but when I identify in clients ...
0
votes
1answer
33 views

Membership Providers

My first question is: Is there difference betwen apsnetmembershipprovider and simplemembershipprovider. I know that aspnetmembershipprovider is disgusting, because it always create temporary tables. ...
0
votes
1answer
40 views

ASP MVC CreateUser vs CreateAccount

What's the difference between SimpleMembershipProvider.CreateAccount and SimpleMembershipProvider.CreateUser ? Which one should i use ? Also, WebSecurity only has createAccount and ...
0
votes
1answer
93 views

System.Web.Providers.DefaultMembershipProvider having performance issues/deadlocks

We have started to use the updated System.Web.Providers provided in the Microsoft.AspNet.Providers.Core package from NuGet. We started to migrate our existing users and found performance slowing and ...
0
votes
1answer
203 views

Custom Create User in ASP.net MVC 4

I have made an asp.net MVC 4 Internet application. I wanted to have custom Create User function. So I used CreateUser function of MembershipProvider class and added <providers> configuration in ...
0
votes
2answers
97 views

The connection name 'DefaultConnection' was not found in the applications configuration or the connection string is empty

I just started getting this message when I run my ASP.NET MVC 4 application in debug mode in Visual Studio 2010 Professional in the internal development server. It was working fine till yesterday. It ...
1
vote
1answer
68 views

Webmatrix Reset password

I want to know how to set a password using mvc4 providers without knowing the old password ? I want to make a forgot password function, where the user receives a secure link via email and then clicks ...
0
votes
0answers
72 views

Membership.ValidateUser() always returns false

I am using AspNetSqlMembershipProvider MVC4, WebAPI, .NET 4.5 The app (restful webservice) is implemented using basic authentication scheme. It gets the username and password and calls the ...
0
votes
2answers
1k views

How can I customize simple membership provider to work with my own database ASP.NET mvc 4

I’m exploring ASP.NET MVC 4 these days. I will be pleased if someone can help by answering my question . I am building an academic project "Project management and support system" . I have designed my ...
0
votes
0answers
43 views

Is the source code for Universal Membership Provider (System.Web.Providers) available?

Is the source code for Universal Membership Provider available? Is the project open source? To be more clear, I'm talking about the System.Web.Providers.dll, available from Nuget: ...
1
vote
1answer
205 views

Authentication cookie ignored by REST proxy requests

3 servers on same domain. Custom membership provider with forms authentication. ASP.net webforms with login (forms authentication) ASP.net webapi ExtJs web app Authentication between 1 and 2 ...
0
votes
2answers
34 views

asp.net membership multiple tennants

I have an application that will have multiple tenants. This means that there will be multiple instances of this application. Used by different departments. Possibly a user from one department will use ...
0
votes
0answers
132 views

Microsoft ASP.NET Universal Providers Core 1.2 - Entity framework

Morning, I have spent many hours on Google looking forthe right way to use Microsoft ASP.NET Universal Providers Core 1.2 with my current project. I have a repository that knows about my entity ...
0
votes
0answers
85 views

Microsoft ASP.NET Universal Providers Core 1.2 - Difference between System.Web.Security.MembershipUser and System.Web.Providers.Entities.User

I am a bit confused. I am starting to use Microsoft ASP.NET Universal Providers Core 1.2 in an MVC4 and Entity Framework 5 project. Now Microsoft ASP.NET Universal Providers Core 1.2 has a dependency ...
0
votes
0answers
23 views

Custom Membership provider and unitofwork pattern, Update user information

I'm using my custom membership provider that inherited from MembershipProvider. and I'm trying to update user information in AccountController. But if I try to update user information in ...
1
vote
0answers
83 views

Error when trying to pass information to membership provider

EDIT: I found the solution to my problem. More information at the end of post. I built a WCF service that uses a membership provide to provide authorization for my client and to manage users/roles ...
0
votes
1answer
94 views

Accessing WCF service sql membership provider from client

I have created a WCF service that is used for authentication. It uses an asp.net SQL membership provider for the accounts.I need a way for the client application to be able to register an account, ...
0
votes
1answer
59 views

Is it possible to have full access to sql membership provider from wcf service or desktop application?

I am creating a WCF service that uses an asp.net SQL membership provider to authenticate users. I know that the users can be authenticated with no problems but what about if I wanted to allow users to ...
4
votes
3answers
111 views

How do I get the current context or user identity from a separate .NET application?

Background I am developing an iterative migration from a legacy ASP.NET forms app to an MVC 4 app. This migration is happening in stages, one section at a time, so it is necessary to run both the ...
0
votes
2answers
32 views

What methods from SqlMembershipProvider set IsApproved to false?

I have come across a problem where one of my user's IsApproved flag has magically been set to false and I'm wondering how this may have happened. The user is not locked out due to failed password ...
0
votes
0answers
31 views

Generating checkboxes for role-designation during registration

I have the following code for a project that I'm working on in ASP.NET MVC 4 framework. I'm a little stuck as to how to proceed. In my AccountModel.cs [Table("UserProfile")] public ...
0
votes
1answer
250 views

SimpleMembership WebForms Asp.net 4.0 roles

I am trying to find a way to manage roles for an existing WebForms ASP.NET 4.0) application. This is not MVC. I cannot change the existing project to MVC nor .NET 4.5, so please provide solutions ...
0
votes
1answer
39 views

Asp.net membership provider determination

When studying ASP.net membership provider I faced with such a question and could not find an answer. It is clear that We have Database, where provider stores information like name/pwd etc. , but how ...
1
vote
1answer
149 views

asp.net mvc 4 join a table to user table in SqlMembership

I'm new to MVC, I have a model named Person containing these fields: name ,family ,email ,UserID I want to create a 1:1 relationship between User table in SqlMembership and Person table in my ...
0
votes
2answers
130 views

Generate test data for MVC Membership

I'm trying to create a script to create some MVC users for testing with, however, I'm having a problem generating the password hash. I'm using the following SQL as described in the documentation for ...
0
votes
1answer
211 views

Custom Membership provider with oAuth

It's my first contact with MVC so please be understanding for me. First of all: 1) If I will implement custom Membership provider with sql database, with my methods to activate user via e-mail, ...
1
vote
1answer
352 views

MVC 4 Custom Membership Provider troubles

I'm working on my first real MVC project and my task is to implement a custom membership provider. I have implemented one before in asp.net 3.5 Web Forms so I'm trying to reuse some of that code if ...
0
votes
1answer
248 views

MVC4 Membership: How do I notify membership provider on logout?

I have cretated a very basic MVC 4 site using the VS2012 "Internet Application" template and I'm trying to implement a custom MembershipProvider class. On login, the template code calls ...
0
votes
0answers
38 views

custom membership 3 part login

Looking to implement a custom a DefaultMembershipProvider using the universal providers, this provider needs to handle 3 segments for authentication. GroupID UserName Password At present I have ...
0
votes
0answers
66 views

Request.IsAuthenticated and many application

I am developping an application then I download a project as an example when I run it I noticed that the name of the user logged in is the same as the one I'm using for my application I tried to ...

1 2 3 4 5 15