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