Overview of .NET

ASP.NET is the web development element of Microsoft’s .NET platform. N-tier programming methodology is at the core of ASP.NET and the .NET platform. This methodology uses an object-oriented approach for dividing business logic, data access, and presentation logic. This separation, almost nonexistent in ASP 3.0, allows designers to easily retool business logic for use on platforms other than web browsers. It also allows developers to easily provide hooks into an application’s logic by sharing business logic as XML web services.

The .NET Framework, sometimes referred to as the Base Class Library (BCL), is an extensive library of classes that provide basic functionality. By using these classes, developers can decrease development time with comprehensive implementations for data access, sending email, XML document manipulation, and much more.

The .NET Framework also allows developers a choice of programming languages, including JScript.NET, C# (pronounced “C sharp”), and Visual Basic.NET (VB.NET). Accessing the Framework varies only slightly across these three languages. A single ASP.NET application can mix modules written in different languages. Following are three analogous code snippets in the three languages. Each example displays “Hello World!” on the screen when the web page loads.

Visual Basic.NET example:

Sub Page_Load (Sender As Object, E As EventArgs)
  HelloWorld.Text = "Hello World!"
End Sub

C# example:

public void Page_Load (Object Sender, EventArgs E) { HelloWorld.Text ...

Get Flash Remoting: The Definitive Guide now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.