Updating ASP.NET project to HTML5 -
i have asp.net 2.0 application. start enhancing html5 specific tags/features. mean first step change line:
<!doctype html public "-//w3c//dtd html 4.0 transitional//en" >
at top of each .aspx file with
<!doctype html>
and html5 specific tag use ok?
asp.net server-side technology won't have a lot html5. can use html5 elements in application, but, limited using elements generated asp.net webforms framework.
as example, use html5 doctype, <!doctype html>
, or use article
element or data
attributes. none of has of impact on asp.net server-side technology.
Comments
Post a Comment