Manuel
Manuel

Reputation: 275

HTML5 with ASP.NET MVC

We are plannig a new project and we want to use ASP.NET in conjunction with the MVC pattern. We want also have acces to new features includes in HTML5. But we do not found many information or people going in the same direction.

Is there some kind of contradiction with ASP.NET MVC with HTML5 or the subject is so trivial that just a few people are talking about it ?

(Question reformulated)

Upvotes: 3

Views: 557

Answers (2)

ajbeaven
ajbeaven

Reputation: 9582

Even if ASP.NET MVC didn't generate valid HTML5 (which it does), you can use templates to output your HTML exactly how you want to.

Upvotes: 0

Ryan Hayes
Ryan Hayes

Reputation: 5310

ASP.NET MVC generates valid HTML5 just fine, and you're perfectly OK to use it in your apps. ASP.NET MVC is the templating, and back-end that generates HTML, including HTML5 and all the new features of it!

Upvotes: 3

Related Questions