Whenever we want to develop application which is to be lightweight and used for easy for testing and Maintenance and more Loose Coupling at that time we can develop application in MVC.
If we see in asp.net Webforms we have various server control which generates large view state to maintain state which make our page heavy. If person is having low bandwidth then they cannot access this Heavy page. At that time we can use MVC where we have control over Generating HTML and using some Functionality of MVC such as bundling and modification can increase performance of application.
Markdown for AI
A clean, structured version of this page for AI assistants and LLMs.
We use cookies to ensure you have the best browsing experience on our website. By using our site, you
acknowledge that you have read and understood our
Cookie Policy &
Privacy Policy.
Whenever we want to develop application which is to be lightweight and used for easy for testing and Maintenance and more Loose Coupling at that time we can develop application in MVC.
If we see in asp.net Webforms we have various server control which generates large view state to maintain state which make our page heavy. If person is having low bandwidth then they cannot access this Heavy page. At that time we can use MVC where we have control over Generating HTML and using some Functionality of MVC such as bundling and modification can increase performance of application.