ASP.Net and HTML5

I need to develop a web application, I have two options

  • mvc3 direct implementation
  • using HTML5

I want to know if HTML5 can be used as part of the architecture of a .net web application or not?

Causes:

there is no official support for HTML5 server controls, such as IE 9 has now been launched, but how good it is, it supports HTML5

I found on the Internet that there is an installation for the HTML5 helper, but how much is this possible?

I need a guide to HTML5 and .net and any tutorials in this combination.

Thank you in advance

+4
source share
3 answers

Microsoft always argues that HTML5 is not completely finished. Then ASP.NET cannot be completely rewritten to follow it. It makes some sense, but ...

You can do it yourself: http://stephenwalther.com/blog/archive/2011/01/11/building-an-html5-app-with-asp-net.aspx .

But I really believe that ASP.NET MVC is more flexible about this task.

0
source

Standards are based on implementation, not invention. If Microsoft wants to wait for the HTML5 specification to finish, they will wait a long time. Meanwhile, modern browsers have implemented most of the specification and are moving forward.

With this in mind, how can you expect ASP.NET to contain HTML5 elements and related technologies if Microsoft does not believe in its use right now? In our small business, this is the reason we will never use it.

+1
source

Your question is quite open. What do you want from HTML5? If you are just looking for controls, you will run into obstacles that ASP.Net web forms will not display new HTML 5 input types with placeholders and custom keyboards like input URL, input email canvas, etc. I made an open source project to connect and play using web forms.

If you are looking for other parts of the specification, pay particular attention to whether markup is β€œbad grace”. If you can optimize your experience with HTML5, but still maintain the basic quality for older browsers, I say go for it!

0
source

All Articles