We are making a student project, and have already made a database (SQL Server 2012) with a Customer table, that has Id, Name, Address, Zip, Email (also to be used as username) and Password (not encrypted right now, and the 4 existing test users all have password = 1234)
I'm trying to learn how to create a MVC4 project as a web app, and have altered the connection string in web.config to connect to our database at my service provider. That also creates some tables that the MVC uses for user authorization.
Is it possible to link it up to our existing scenario, and have the users enter the values I need, and update the customer table in the database?
We are using Visual Studio 2012, and have a SQL Server hosted at a web hotel.