Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How Can I Tell If My Site Is Running ASP.NET MVC or Web Forms?

I am a non-coder that needs to get some information to my developer. One of the questions was whether we were running ASP.NET MVC or Web Forms? What is the best way I can tell this. If you want to take a look, the site is at http://sokanu.com (just a splash page)

Thanks guys

like image 814
Spencer Avatar asked Jul 02 '10 16:07

Spencer


People also ask

Is ASP.NET and ASP.NET Web Forms the same?

ASP.NET Web Forms is a part of the ASP.NET web application framework and is included with Visual Studio. It is one of the four programming models you can use to create ASP.NET web applications, the others are ASP.NET MVC, ASP.NET Web Pages, and ASP.NET Single Page Applications.

What's the difference between ASP.NET Web Forms and ASP.NET MVC?

Asp.Net Web Form has built-in data controls and best for rapid development with powerful data access. Asp.Net MVC is lightweight, provide full control over markup and support many features that allow fast & agile development. Hence it is best for developing an interactive web application with the latest web standards.

How do I know if an application is MVC?

As a start if the solution contains Models,Controllers and Views Folder, it is very likely it is MVC. You can also look at which namespace is included... or you know, ask for a crash course on how the application operate.


1 Answers

It's running WebForms.

You can tell by the Viewstate in the page source.

like image 75
SLaks Avatar answered Oct 24 '22 12:10

SLaks