Reputation: 14912
Does ASP.NET MVC4 has anything to do with multi-browser compatibility limitations?
In other words: the ASP.NET MVC engine also generates HTML server side which is displayed client side (right??), does it generate "non multi-browser compatible" HTML markup or do those two things have nothing to do with each other?
Upvotes: 0
Views: 531
Reputation: 2852
No , asp.net MVC does not magically generate any html. it render wherever you put in your views.
you will have to write your code to be "multi-browser compatible".
Upvotes: 0
Reputation: 1319
ASP.NET MVC framework doesnt generate HTML by itself, it use view engines to create HTML like: RAZOR, ASPX, SPARK and etc.
Upvotes: 1