Dot NET
Dot NET
Dot NET
NET Framework
Gholamali Semsarzadeh
July 2001
Examples of types:
Integer
String
Rectangle
Customer
Contract
Chart
Recordset
Check
Financial Institution
Examples:
The type Integer describes what values it takes and what
operations it accepts.
The type Check describes what values (e.g., AccountNo
and Amount) it takes and what operations (e.g., Cash,
Deposit) it accepts.
It describes:
Identity of an assembly
Its security requirements
The identity of other assemblies it depends on
The types exposed by the assembly
The act of drawing a form (such as Form1) generates the VB.NET code
that defines the corresponding class named Form1.
No matter how the Web page is generated the code behind it is very
ad-hoc and non-structured. In the .NET platform, ASP.NET attempts
to solve some of these problems.
For each HTML control (such as a list box or an input text box)
there exists a server-side control in ASP.NET. When a Browser
requests a specific ASP.NET page in its URL the following events
happen:
The ASP.NET program is executed
Each server-side control in that program generates a
corresponding HTML control
As the final result, the ASP.NET program generates an HTML
page that is targeted to the version of the Browser that
requested the page.