|
Answer» Yes, ASP.NET and ASP(ACTIVE Server Pages) both are different. Let’s check how they are different from each other. - ASP.NET uses .NET languages such as C# and VB.NET, which are COMPILED to Microsoft Intermediate Language (MSIL). ASP uses VBScript. ASP code is interpreted during the execution.
- ASP.NET which is developed by Microsoft is used to CREATE dynamic WEB applications while ASP is Microsoft’s server-side technology used to create web pages.
- ASP.NET is fully object-oriented but ASP is partially object-oriented.
- ASP.NET has full XML Support for easy DATA exchange whereas ASP has no built-in support for XML.
- ASP.NET uses the ADO.NET technology to connect and work with databases. ASP uses ADO technology.
|