Content deleted Content added
m →Principles of ASP.NET: typo |
m →Principles of ASP.NET: it's |
||
Line 5:
Even though ASP.NET takes its name from [[Microsoft]]'s old web development technology, [[ASP]], the two are very different. ASP.NET has been rebuilt completely and is based on the [[Common Language Runtime|CLR]] shared by all [[Microsoft .NET]] applications. ASP.NET code can be written using any of the different programming languages supported by the [[Microsoft .NET|.NET]] framework, usually [[VB.NET|Visual Basic.NET]] or [[C Sharp Programming Language|C#]].
ASP.NET attempts to simplify the transition from [[Microsoft Windows|Windows]] application development to web development by allowing developers to build pages composed of ''controls'' similar to a Windows [[user interface]]. A web control, such as a ''button'' or ''label'', can be used in very much the same way as its Windows counterpart:
ASP.NET uses the [[.NET Framework]] as an infrastructure. The .NET Framework is a managed runtime environment (like [[Java platform|Java]]), providing a [[virtual machine]] with [[Just-in-time|JIT]] and a [[class library]].
|