answersLogoWhite

0


Best Answer

Asp.net system is a part of a .net platform for building, deploying and running web applications. We can build up a web application by using both Asp.Net Web Form and Asp.Net MVC. In this article, I will uncover the principal difference between Asp.Net Web Form and Asp.Net MVC.

We will discuss some important differences that will help you make a right choice between both of them. Let's take a look each of the differences in more detail. Difference between Asp.Net MVC and Web Forms:

Our Company: Binary Informatics

User Avatar

Wiki User

6y ago
This answer is:
User Avatar
More answers
User Avatar

Wiki User

12y ago

The basic difference between ASP and ASP.NET is that ASP is interpreted; whereas, ASP.NET is compiled. This implies that since ASP uses VBScript; therefore, when an ASP page is executed, it is interpreted. On the other hand, ASP.NET uses .NET languages, such as C# and VB.NET, which are compiled to Microsoft Intermediate Language (MSIL).

This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What and the Difference Between ASP.NET and MVC?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

Difference between aspnet 2.0 and aspnet 3.5?

Asp.net 3.0 have some new feature Like Windows Presentation Foundation,Windows Communication Foundation,Windows Workflow Foundation,Windows Card Space. these feature doesn't have asp.net 2.0 .


When was MVC Consulting created?

MVC Consulting was created in 1981.


How jsp used in mvc model?

MVC refers to Model View Controller architecture. Jsp pages are the view part of the MVC architecture...


How do you read the dll file within the aspnet program which the dll file is used to pass parameter between aspnet program?

Question need some more clarification


What is mvc in jsp?

JSP is used for the V part of the MVC Architecture. MVC stands for Model-View-Controller Architecture and JSPs are used for the views.


What is the difference between aspnet vbnet and c?

asp.net is website programming vb.net is windows forms programming the visual basic language c#.net is windows forms programming in c# language


Why aspnet mvc?

ASP.NET MVC model allows programmers to separate the user interface and the programming logic in a very simple and efficient way. MVC stands for Model-View-Controller. View - The user interface of any application. Model - The logic that allows the application to interact with database or XML files are written in the model classes. Business logic is also maintained by Model classes. Controller - The classes which interact with both Model and View. These classes allow passing data from Model to View and vice-versa. By using ASP.NET MVC you can create loosely coupled applications. Which means if there is change in database or its structure then then it will not affect or will have minimum impact on user Interface or the business logic of the application. Similarly, if there is a change in the user Interface then it will have less impact on business logic and database layers.


Is MVC tool or software?

Software


Where can one find information on aspnet?

Information about ASPNET can be found on the ASPNET website. Anything one needs to know about using this application framework for web development purposes can be found there.


What is the definition of the word MVC architecture?

The definition of the the word MVC is: "Model-View-Controller (MVC) is a software architecture, currently considered an architectural pattern used in software engineering." The model consists of application data, business rules and all kinds of functions.


How many objects in aspnet?

6


How to use MVC in Swing Application?

MVC stands for Model View & Controller. In Swings you can use this as follows: Model - Java Beans View - JFrames & JPanels Controller - Event Handlers