2011-09-29 40 views

回答

1

由於Doctype is not an HTML tag,您不能使用TagBuilder。

雖然,您可以返回一個正常的MvcHtmlString。

public static class CustomHelpers 
    { 
     public static MvcHtmlString DocType(this HtmlHelper helper) 
     { 
      var docType = @"<!DOCTYPE ...>"; 
      return MvcHtmlString.Create(docType); 
     } 
    } 

,然後用它這樣的:

@Html.DocType()