Sep 25, 2015

Common features of MVC

 common features of MVC which I would like to list out are:-
 
Stateless: - MVC Framework follows the stateless pattern which means there will be no illusion of state at all. Also, there will be no Page Life Cycle, no Server Side Controls and no View Statealso. So, instead of using any server side controls like Grid Controls or Menu Controls, we will be writing and crafting the HTML completely from scratch. So, this way we’ll be having complete
control on our HTML.


No Page Extensions: - This is also one of the best things which MVC says, so there will be no page extension like .aspx. So, here URL comes is pretty handy and easy to use and easy to remember for readers and also for the search engines. Basically, it is said that pages which are
coming without any page extension are ranked higher in the search engine.


Extensible: - This is also one of the common goals for MVC to be completely extensible throughout all the aspects. So, like when we talk about views, one may use aspx view engine to
write the view or use the razor to do the same or user can download any other view engine and use
the same with the project as well. 


Testability: - Testability is the one of the most important factor of using MVC. It’s basically quite simple, it maintains complete separation of concerns, and hence it’s easy to write and test
for each module explicitly. So, here we can easily write test cases for each module explicitly.

No comments:

Post a Comment