大橙子网站建设,新征程启航
为企业提供网站建设、域名注册、服务器等服务
方法一:
淮上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)
}
}
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中添加
3.在cshtml页面调用
@Html.Truncate(item.Title,20)
注:如果在页面中调用不到方法,则重启解决方案,就可解决