Reputation: 807
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
Reputation:
You can try using ASP.NET web site administration tools
http://en.wikipedia.org/wiki/ASP.NET_Web_Site_Administration_Tool
http://msdn.microsoft.com/en-us/library/yy40ytx0.aspx
Upvotes: 1
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