Saved Bookmarks
| 1. |
Tell Us Something About Model, View And Controllers In Asp.net Mvc? |
|
Answer» Model : It is basically a business entity which is used to represent the application data. Controller : The Request which is SENT by the user ALWAYS SCATTERS through controller and it's responsibility is to REDIRECT to the specific view using View () method. View : it's the presentation layer of ASP.Net MVC. Model : It is basically a business entity which is used to represent the application data. Controller : The Request which is sent by the user always scatters through controller and it's responsibility is to redirect to the specific view using View () method. View : it's the presentation layer of ASP.Net MVC. |
|