alinpopescu
alinpopescu

Reputation: 807

ASP.NET MVC MEMBERSHIP

I have just created a user in ASP.NET MVC ,and i want to insert him into Membership table. How can i do that? , because i can`t insert into Membership_Users thanks

Upvotes: 0

Views: 318

Answers (2)

Guillaume Roy
Guillaume Roy

Reputation: 79

You have to use the membership provider.

1) Set it in Web.Config 2) Use it in you code

You can see this article : http://odetocode.com/articles/427.aspx

Upvotes: 1

Related Questions