@model string @if (Model != null) { if (this.ViewContext.RouteData.Values["action"].ToString().ToLower() == "details") { @Model } else { if (Model.Length > 20) {
@Model.Substring(0, 17)...
} else { @Model } } }