bas
bas

Reputation: 14912

ASP.NET MVC multi browser compabitibility issues?

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

Answers (2)

Nikola Sivkov
Nikola Sivkov

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

Reno
Reno

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

Related Questions