Asp.Net Core MVC 中擴展HtmlHelper


using Microsoft.AspNetCore.Mvc.Rendering;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;

namespace Microsoft.AspNetCore.Mvc.Rendering
{
    public static class HtmlHelperExtension
    {
        public static string foo(this IHtmlHelper html,string key)
        {
            return "";
        }
    }
}

 需要注意的是第7行的命名空間 和第11行的"IHtmlHelper",不是Asp.Net MVC 中的 HtmlHelper


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM