1

How do you manage(CRUD) users in aspnet_db after you deploy your site?

Do you just create models for them after merging the aspnet_db database into your sites database?

And then create admin views to edit and manage them?

2
  • You will need to define manage and user before this question becomes answerable. Commented Aug 22, 2010 at 15:27
  • How do I create, edit, update, delete users in the aspnet_db that get's generated for you. I know how to merge this data into my sites database, but that's it. Commented Aug 22, 2010 at 15:30

2 Answers 2

1

It depends. If you want to allow users to be managed through a web interface on your site, then yes you need to create models, controllers and views. In this case you are using the built-in Membership provider to create, update and delete users. If you don't need a web interface you could always remotely connect and administer the SQL database.

Sign up to request clarification or add additional context in comments.

1 Comment

That's what I thought, just wanted to make sure. Thanks :)
1

Good kit available from The ASP.NET MVC membership starter kit

1 Comment

Thanks that looks like a great starting point. I wonder how compatible it is with MVC2, since it was built for MVC 1.0.

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.