0
votes
0answers
137 views

ASP.NET 4.5 Membership and oAuth Tables

Does anyone know how i can get the oAuth part on the ASP.NET membership moved to my MS SQL DB, rather than use localdb which its seems to be doing by default? I have my users all set up in my SQL db, ...
0
votes
2answers
98 views

how to use async await functionality with MVC / Membershipprovider

I would like to authenticate user using Parse Library. Here are the methods which I would like to make it asyc as api call supports only async call. I am new to MVC and aysc/await functionality. ...
1
vote
2answers
189 views

Login Not Working with Custom Profile

This is a Web Forms Application Project (WAP). I am programmatically creating a user with custom profile properties and can see the user data being persisted in the Users table but not in the ...
0
votes
0answers
39 views

modify the asp.net membership to support open id

I am currently setting up my mvc 4 web application with the out of the box membership functionality included in .net. I would like to expand this functionality to support open id providers such as ...
2
votes
1answer
2k views

SimpleMembershipProvider WebSecurity.InitializeDatabaseConnection failing with an empty sql database

I just added a sqlserver connection string. fresh new database. I checked the connection is fine on server explorer. <add name ="club" connectionString="Data Source=server1;Initial ...
2
votes
2answers
1k views

How to use SimpleMembership with WebForm 4.5 and EntityFramework?

Ive heard there new providers with ASP.NET 4.5 (such membership provider) but it seem i can't find anything decent about using the SimpleMembership with WebForm ASP.NET 4.5 and EntityFramework. Is ...
2
votes
1answer
783 views

Move Users and Passwords to new Membership database

I am trying to move my membership database, created in .Net 4, to a newly created .Net 4.5 membership database. The .Net 4.5 database has a different schema that the old .Net 4 database. So I created ...