What is Common Language Runtime in ASP.NET? or What is CLR in ASP.NET

Common Language Runtime (CTS)
Common language runtime (CLR) is runtime for all .Net languages.It’s responsilbe for executing & managing all code written in any language that targets the .Net plateform.It’s provides many core services for application, such as:
1.Garbage Collection (GC):Garbage collection is a CLR feature that automatically manages memory on behalf of an applicaton.You create objects [...]

What is Common Laguage Specification in ASP.NET? or What is CLS in ASP.NET?

Common Laguage Specification (CLS)
Common language specification is the sub-set of the Common type system(CTS).This is provide the cross language interoperability.
For Example:
VB .Net’s Integer is 32 bit which maps exactly to the IL Type int32
and C#  .Net’s int is 32 bit which maps exactly to the IL Type int32
    i.e              int (In C#)——––>  int32 (In IL) <–———- integer (In [...]

What is Common Type System In ASP.NET? or What is CTS In ASP.NET?

Common Type System(CTS):
Common type system defines the pre-define data types that are availbe in IL,so that all languages that target the .Net framwork will produce compile code that is ultimately based on the CTS.
For Example:
VB .Net’s Integer is 32 bit which maps exactly to the IL Type int32
and C#  .Net’s int is 32 bit which [...]

Difference between Users-define Function (UDF) and Store Procedure (SP)

        Difference between Users-define Function (UDF) and Store Procedure (SP)

Stored procedure
Definition of Store Procedure (SP): Stored procedure is a pre-compile of SQL statements (program or procedure) which is physically stored within a database. Stored procedure contains two type of parameter:-
1. In Put Parameters: – Input parameter means value (or values) passed to the store procedure
2. Out Put [...]

ASP.NET ARCHITECTURE

ASP.NET Architecture 
ASP.NET Architecture follows below mentioned points:-   
ISAPI(aspnet_isapi.dll) : ISAPI is filter mechanism that filter the request and send to the actual worker process(aspnet_wp.exe).ASP.NET uses ISAPI to run on the Internet Information Server (IIS).Not only does IIS host ASP.NET but the ISAPI filter mechanism also allows both ASP and ASP.NET to coexist on the same IIS [...]