I just created my first MVC webapp and noticed that I need to store my users in the ASP Schema tables now. I also have an Android app that must authenticate using the same list of users.
Before MVC, I was able to simply post something to a webform and have it check the list of usernames and password for a match (encrypted of course), then the form would return the requested info. How would I do this using MVC?
Otherwise, could I just change MVC's authentication to use my own user tables?