MVC————扩展方法MvcHtmlString


 

使用前:

 

public static class MyHtmlHelper
2     {
3         public static string GroupPage(this HtmlHelper helper)
4         {
5             string html1 = "<span style='color:red;'>hello</span>";
6             return html1;
7 
8         }
9     }
View Code

使用后:

public static class MyHtmlHelper
    {
        public static MvcHtmlString GroupPage(this HtmlHelper helper)
        {
            string html1 = "<span style='color:red;'>hello</span>";
            return new MvcHtmlString(html1);

        }
    }

效果:


免责声明!

本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。



 
粤ICP备18138465号  © 2018-2025 CODEPRJ.COM