using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.Mvc;namespace TOFFManage.ToffsHelper
{
    public static class HtmlHelperExtensions
    {
        public static MvcHtmlString DTL(this HtmlHelper htmlHelper, object dt)
        {
            return MvcHtmlString.Create(“A”);
        }
    }
}
@Html.DTL(DateTime.Now)错误
Compilation ErrorDescription: An error occurred during the compilation of a resource required to service this request. Please review the following specific error details and modify your source code appropriately. Compiler Error Message: CS1061: 'HtmlHelper<dynamic>' does not contain a definition for 'DTL' and no extension method 'DTL' accepting a first argument of type 'HtmlHelper<dynamic>' could be found (are you missing a using directive or an assembly reference?)
请部是怎么回事?