0

我正在尝试连接c.namewithResponse.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>
4

1 回答 1

0

我建议在控制器代码中构建完整的链接文本。或者,您可以在视图标记中使用帮助程序,例如以下示例:

<%:Html.ActionLink(Html.GetNameWithCount(c.Name, counts), "Browse", "Listing", routes, null)%>
于 2013-01-20T15:08:57.553 回答