- Back to Home »
- References »
- Introduction to ASP.NET
Posted by :
Sudhir Chekuri
Tuesday, 1 October 2013
ASP.NET is technology under .NET used to create dynamic websites. It supports HTML5, Javascript, CSS, JQuery to create beautiful websites.
ASP stands for Active Server Pages.
ASP.NET supports 3 types of approaches they are WebPages, WebForms and MVC.
In WebPages the code and HTML are mixed in one page.
In WebForms the code and HTML are separated and uses ASP.NET server side controls to design webforms.
In MVC Code and design is completely separated and it doesnt use server side controls. It has advantages like less page load time, Structured urls, Url routing and simplifies application testing.
ASP stands for Active Server Pages.
ASP.NET supports 3 types of approaches they are WebPages, WebForms and MVC.
In WebPages the code and HTML are mixed in one page.
In WebForms the code and HTML are separated and uses ASP.NET server side controls to design webforms.
In MVC Code and design is completely separated and it doesnt use server side controls. It has advantages like less page load time, Structured urls, Url routing and simplifies application testing.