ASP.NET Web Forms - Tutorial
ASP.NET is a development framework for creating web pages and websites using HTML, CSS, JavaScript, and server scripts.
ASP.NET supports three different development models: Web Pages (Web pages), MVC (Model View Controller model-view-controller), and Web Forms (Web Forms):
This tutorial introduces Web Forms.
Web PagesMVCWeb FormsWhere to start?
Most developers learn a new technology by looking at running examples. If you'd like to see a running example of Web Forms, check out the ASP.NET Web Forms demo below.
What are Web Forms?
Web Forms is one of three programming models for creating ASP.NET websites and Web applications. The other two programming patterns are Web Pages and MVC (Model View Controller Model-View-Controller). Web Forms is the oldest ASP.NET programming model and is an event-driven web page that integrates HTML, server controls and server code. Web Forms are compiled and executed on the server, and the server generates HTML to display as a web page. Web Forms There are hundreds of Web controls and Web components used to create user-driven websites with data access. Visual Studio Express 2012/2010Visual Studio Express is a free version of Microsoft Visual Studio. Visual Studio Express is a development tool tailored for Web Forms (and MVC). Visual Studio Express includes: MVC and Web Forms Drag and Drop Web Controls and Web Components Web Server Language (Razor uses VB or C#) Web Server (IIS Express) Database Server (SQL Server Compact) Complete Web Development Framework (ASP.NET) If You already have Visual Studio Express installed and you will learn more from this tutorial.
If you want to install Visual Studio Express, click one of the following links: Visual Web Developer 2012 (Windows 7 or Windows 8) Visual Web Developer 2010 (Windows Vista or XP) ASP.NET Reference Manual At the end of this tutorial, you will See a complete ASP.NET reference manual that introduces objects, components, properties, and methods. ASP.NET Reference Manual