Home ASP.NET ASP.NET Application Fundamentals

ASP.NET - ASP.NET Application Fundamentals


After completing this tutorial, you will be able to
  • Create an IIS Virtual Directory
  • Develop an HTML page into an ASP.NET application
  • Mix HTML with executable code and work with server side script blocks
  • Locate and view the assembly compiled by ASP.NET using your ASPX file
  • Work with code-behind and code-beside execution models
This tutorial covers the fundamentals involved in building an ASP.NET application. From a syntactical point of view, writing .NET code is similar to writing the classic ASP code that you may have seen during the late dot-com era. Many of the key symbols remain the same, and even some of the syntax survives. However, the entire underlying execution model changed dramatically between classic ASP and ASP.NET. Whereas executing classic ASP pages was primarily an exercise in rendering HTML, interpreting script code, and calling Component Object Model code, ASP.NET introduces an entirely new object-oriented execution model.

Next