2

I have an ASP.NET 2.0 application. I would like to start enhancing it with HTML5 specific tags/features. Does it mean that the first step is to change the line:

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" >

at the top of each .ASPX file with

<!DOCTYPE html>  

And then any HTML5 specific tag I use will be ok?

4

1 回答 1

1

ASP.NET 主要是一种与 HTML5没有太大关系的服务器端技术。您当然可以在应用程序中使用 HTML5 元素,但是,您也只能使用由 ASP.NET WebForms 框架生成的某些元素。

例如,您可以使用 HTML5 DOCTYPE,<!DOCTYPE html>或者您可以使用article元素或data属性。这些都没有真正对 ASP.NET 服务器端技术产生太大影响。

于 2013-05-02T22:55:47.923 回答