Is ASP.NET different from ASP? If yes, explain how?
Code With Suri
Select an image from your device to upload
ASP is the interpreted languages. ASP.NET is the compiled language.ASP uses ADO (ActiveX Data Objects) technology to connect and work with databases. ASP.NET uses ADO.NET to connect and work with database.ASP is partially object oriented. ASP.NET is fully object oriented.ASP Pages have the file extension .asp. ASP.NET Pages have the file extension .aspx.ASP doesn’t have the concept of inheritance. ASP.NET inherit the class written in code behind.ASP pages use scripting language. ASP.NET use full fledged programming language.Error handling is very poor in ASP. Error handling is very good in ASP.NET.ASP has maximum four in-built classes i.e. Request, Response, Session and Application. ASP.NET has more than 2000 in-built classes.