首页 > Web开发 > 详细

asp.net core ViewComponent中直接返回HTML的方法!!! how to return html code direct from a viewcomponent with out a view.cshtml

时间:2020-12-04 19:10:22      阅读:42      评论:0      收藏:0      [点我收藏+]

 利用组件不借助view.cshtml的方法直接返回的方法

  how to  return html code direct from a  viewcomponent with out a view.cshtml


using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; using Microsoft.AspNetCore.Html; using Microsoft.AspNetCore.Mvc; using Microsoft.AspNetCore.Mvc.ViewComponents; namespace MySite.ViewComponents { [ViewComponent(Name = "TestViewComponent")] public class TestViewComponent : ViewComponent { public TestViewComponent() { } public IViewComponentResult Invoke() { return new HtmlContentViewComponentResult(new HtmlString("hello - <b>我是个王八蛋</b>")); } } }

 

 

asp.net core ViewComponent中直接返回HTML的方法!!! how to return html code direct from a viewcomponent with out a view.cshtml

原文:https://www.cnblogs.com/efreer/p/14087062.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!