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?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
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.