Gourav Said..
ASP (Active Server Pages) is a technology that enables you to make dynamic and interactive web pages. ASP uses server-side scripting to dynamically produce web pages. ASP.net code can be written in Visual Basic, C##, J##, Ruby, even Visual RPG. All code is compiled to use the same Common Language Runtime (CLR) that resides in the .NET Framework. While ASP can only be written in, ASP. it is an actual language. ASP Is not truly Object Oriented; it uses more of a top-down programming style, where code execution begins at the top and executes down to the end. You can use functions, sub-routines, classes and other objects, but it isn't. ASP.NET Is Object Oriented, uses the event-driven model, where all your code executes in response to an event, like a mouse-click, or a Page Load, etc. The .NET compliant languages can be used with ASP.NET like C# and VB.NET, where both of them are server-sided languages. With ASP, only VBScript and JavaScript are available as options to be used. In addition, ASP pages are interpreted and the ASP.Netcode is compiled .Traditional ASP can run only on Microsoft platforms but ASP.NET can be executed on non- Microsoft platforms. In classic ASP, the executable code cannot be separated from the HTML. This makes the page difficult to read and maintain. The code block has to be placed whenever the output is to be displayed. The use of ASP.NET pages gives a performance and security edge and supports the usage of any .Net language.
|