在ActionLink中连接代码
本文关键字:代码 连接 ActionLink | 更新日期: 2023-09-27 17:54:30
我正在尝试连接c.name
与Response.Write(counts[c.ID]);
基本上,在<li>
中,我希望它是"类别名称(x)"。
所以,基本上把if
语句推到c.name
语句之后。如何做到这一点?
<li>
<%:Html.ActionLink(c.Name, "Browse", "Listing", routes, null)%>
<%
if (showCounts && (bool)(ViewData["ValidCategoryCounts"] ?? true))
{
Response.Write("(");
if (counts.ContainsKey(c.ID))
{
Response.Write(counts[c.ID]);
}
else
{
Response.Write("0");
}
Response.Write(")");
}
%>
</li>
我建议在控制器代码中构建完整的链接文本。或者,您可以在视图标记中使用帮助器,例如以下示例:
<%:Html.ActionLink(Html.GetNameWithCount(c.Name, counts), "Browse", "Listing", routes, null)%>