ASP.NET Glossary

Constructor

This method is automatically called when an object is created. The constructor method always has the same identifier as the class in which it is defined. The constructor is used to initialize the object and place it in a valid state (e.g., setting the values of member variables).

Related TutorialsLifetime
Unmanaged resources
Locale
Heap
Web …

Learn more

Configuration Management

Configuration settings allow administrators to change the behavior of an application without recompiling the source code. Configurable applications make it easy to adapt to these changes and reduce maintenance costs.

Related TutorialsStack
Hash Code
Strong name
FCL (Framework …

Learn more

CTS (Common Type System)

CTS is a .NET Framework specification which defines the rules of how the CLR defines, declares, and manages types, regardless of the programming language. All .NET components must comply with the CTS specification.

Related TutorialsMethod
Multi-module Assembly
MVC (Model-View-Controller)
Data …

Learn more

CLS (Common Language Specification)

CLS is a set of common conventions used to promote interoperability between programming languages and the .NET Framework. The CLS specifies a subset of the CTS (Common Type System) and set of conventions that are adhered to by both programming language designers and framework class library authors.

Related TutorialsDerived class
Overloading
Web service provider
Shared …

Learn more

CLR (Common Language Runtime)

CLR also known as VES (Virtual Execution System) is a runtime environment that manages the execution of .NET program code. The environment provides services such as memory and exception management, debugging and profiling, and security. The CLR is a major component of the .NET Framework, and provides much of its functionality by following the rules defined in the …

Learn more

CLI (Common Language Infrastructure)

The CLI is defined by the standard ECMA-335. This is a  .NET infrastructure that allows applications written in multiple programming languages to operate many different environments without the need to modify the program code. The CLI consists of: a Portable Executable (PE) file format, a CTS (Common Type System), an extensible metadata system, an CIL (Common Intermediate Language), …

Learn more

CIL (Common Intermediate Language)

The system-independent code generated by a .NET language compiler. CIL defines a file format for storing managed code as both program instructions and metadata in a single file.

Related TutorialsAJAX (Asynchronous JavaScript and XML)
Interface
UDDI (Universal Description, Discovery, and Integration)
JIT (Just In …

Learn more

Collection

A class used to logically organize a group of identical types using a single identifier. Examples of collection types in the .NET Framework include array, arraylist, queue, and stack.

Related TutorialsPE (Portable Executable)
Satellite assembly
XPath (XML Path Language)
Runtime host
XSLT (eXtensible Stylesheet …

Learn more

Code behind

Code behind is an innovative concept introduced in ASP.NET, allows you to separate programming logic completely from presentation elements.

Related TutorialsPre-defined types
Base class
Delegate
MSIL (Microsoft Intermediate Language)
DTD (Document …

Learn more

Class members

Class (or type) members define it behaviors and properties. They include events, member variables, methods, constructors, and properties.

Related TutorialsMember variables
Windows Form
Indexer
Metadata
ASP.NET (Active Server Pages …

Learn more