Skip to main content

Posts

Showing posts with the label ASP.NET Language

ASP.NET

ASP.NET : -     ASP - The full form of it is : A for Active ,S for Server ,P for Pages. Active Server Pages (ASP), also known as Classic ASP, was introduced in 1998 as Microsoft's first server side scripting engine. ASP is a technology that enables scripts in web pages to be executed by an Internet server. ASP pages have the file extension .asp, and are normally written in VBScript. ASP.NET - ASP.NET pages are compiled. ASP.NET has better language support, a large set of user controls, XML-based components, and integrated user authentication. ASP.NET pages have the extension .aspx, and are normally written in VB (Visual Basic) or C# (C sharp). User controls in ASP.NET can be written in different languages, including C++ and Java. When a browser requests an ASP.NET file, the ASP.NET engine reads the file, compiles and executes the scripts in the file, and returns the result to the browser as plain HTML. Why .NET ? OR Advantages of .NET - 1)...