У меня есть следующий код, так как каждая строка выполняется внутри каждого foreach, добавленного к контенту, и я просто хочу, чтобы содержимое в тегах <text></text>
.
<tfoot>
@if (!String.IsNullOrEmpty(PCbuild.Performance))
{
@(ratings = PCbuild.Performance.Split(','))
foreach (var val in ratings)
{
<tr>
<td>
@(score = Convert.ToInt32(val))
@(tempstring.AppendLine("<span class=\"RatingActive\">"))
@(tempstring.Append('█', score))
@(tempstring.AppendLine("</span>"))
@(tempstring.AppendLine("<span class=\"RatingUnactive\">"))
@(tempstring.Append('█', (10 - score)))
@(tempstring.AppendLine("</span>"))
<text>@tempstring.ToString()</text>
@tempstring.Clear()
</td>
</tr>
}
}
</tfoot>