asp.net - How to find out what type of web application? -
related question. difference between web application & web forms application in vs2012
now if presented solution created else how can tell type of web app selected when creator created it?
is there way tell?

there's no difference between "asp.net empty web application" , "asp.net web forms application". second 1 adds bunch of stuff empty project, master page, content files, references, etc., they're same project type.
the different project types mvc projects , "web site".
mvc projects still regular asp.net, have mvc stuff thrown in. if see "controllers" , "views" directory, it's safe bet it's mvc project.
"web site"s different traditional projects. biggest hint there lack of .vbproj file, , lack of .designer.vb files on each of .aspx pages.
Comments
Post a Comment