MVC使用自定义HtmlHelper截断文本内容

方法一:

淮上ssl适用于网站、小程序/APP、API接口等需要进行数据传输应用场景,ssl证书未来市场广阔!成为创新互联公司的ssl证书销售渠道,可以享受市场价格4-6折优惠!如果有意向欢迎电话联系或者加微信:18980820575(备注:SSL证书合作)期待与您的合作!

1.在cshtml页面定义方法

@helper Truncate(string input,int length)

{

if(input.Length<=length)

{

@input

}

else

{

@input.Substring(0,length)<text>...</text>

}

}

2.调用

@Truncate(item.Title,20)

方法二:

1.定义方法

using System.Web.Mvc;

namespace MvcMusicStore.Helpers

{

public static class HtmlHelpers

{

public static string Truncate(this HtmlHelper helper, string input, int length)

{

if (input.Length <= length)

{

return input;

}

else

{

return input.Substring(0, length) + "...";

}

}

}

}

2.在视图的web.config中添加

<add namespace="MvcMusicStore.Helpers" />

3.在cshtml页面调用

@Html.Truncate(item.Title,20)

注:如果在页面中调用不到方法,则重启解决方案,就可解决

当前名称:MVC使用自定义HtmlHelper截断文本内容
本文地址:https://www.cdcxhl.com/article26/gecjcg.html

成都网站建设公司_创新互联,为您提供企业建站建站公司响应式网站商城网站网页设计公司App设计

广告

声明:本网站发布的内容(图片、视频和文字)以用户投稿、用户转载内容为主,如果涉及侵权请尽快告知,我们将会在第一时间删除。文章观点不代表本网站立场,如需处理请联系客服。电话:028-86922220;邮箱:631063699@qq.com。内容未经允许不得转载,或转载时需注明来源: 创新互联

网站托管运营