|
ASP stands for Active Server Pages. Microsoft ASP.NET is a server side scripting technology that allows programmers to create dynamic and interactive web applications. It can be used to create anything from small, personal websites through to large, enterprise-class web applications. ASP.NET uses the Common Language Runtime (CLR) provided by the .NET Framework. This CLR manages execution of the code we write. ASP.NET code is a compiled CLR code instead of interpreted code (ASP). CLR also allows objects written in different languages to interact with each other.
ASP.NET makes development simpler and easier to maintain with an event-driven, server-side programming model. These applications run faster and counter large volumes of users without performance problems.
|
|