1
doctype標籤中的!
我無法創建。有沒有辦法把!在使用tagbuilder的doctype標籤中。如何使用TagBuilder創建文檔類型
doctype標籤中的!
我無法創建。有沒有辦法把!在使用tagbuilder的doctype標籤中。如何使用TagBuilder創建文檔類型
由於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()