Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

ASP.NET and HTML 5

Tags:

html

asp.net

Does asp.net (not mvc) support HTML 5? I need to create HTML 5 application, but I don't want to use mvc...

Is it possible?

like image 860
Andy Avatar asked Feb 14 '26 21:02

Andy


2 Answers

Yes, see this HTML5 for ASP.NET Developers article for some information.

like image 141
amurra Avatar answered Feb 17 '26 10:02

amurra


If you don't use MVC, you also don't use any HTML template engine, so ASP.NET does not touch your HTML output. You can output whatever you want, for example HTML5.

like image 32
Yogu Avatar answered Feb 17 '26 10:02

Yogu