Currently working on a Classic ASP to ASP.NET MVC 3 migration project. Well! As all of you know Classic ASP page contains all the layer codes (DAL, BAL) in one single file. I'm little bit confused here also beginner in MVC. For views, we can use (markup of) the asp pages which all can be rendered to the user. Just struggled to identify the Controller and Models. Is there any easy way exist to identify Controller/Models ?
I give a small example. 1) After login of the user, say one asp file (role.asp) check the roles of that user. 2) Then it will redirect to another page (say next.asp) which will get data for the user from db and store it in session then redirect to the landing page ( land.asp). Note that landing page will differ based on role.
In the above scenario there are 3 files are involved. How can i identify the Controller/model/view here. :( Any help appreciated.