views:

105

answers:

2

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

+1  A: 

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

Guillaume Roy
+1  A: 

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

Gopalakrishnan Subramani
Yes i`m using membership provider with all the necesaire settings in web.config,but it still doesn`t work :((
alinpopescu