解决方法
在视图:
<%@ Import Namespace="MyProject.Extensions" %>
或在web.config中(适用于所有视图):
<pages> <namespaces> <add namespace="System.Web.Mvc" /> <add namespace="System.Web.Mvc.Ajax" /> <add namespace="System.Web.Mvc.Html" /> <add namespace="System.Web.Routing" /> <add namespace="System.Linq" /> <add namespace="System.Collections.Generic" /> <add namespace="MyProject.Extensions" /> </namespaces> </pages>