User-2060576634 posted
hi.. how can I add numbering (starting from number 1 until the foreach loop continues) to the following code structure instead of the word "numbering"?
foreach(var row in questions)
{
<h6>numbering . @row.Text</h6>
for(var i = 1; i < 5; i++)
{
<p>@row["Choice" + i]<br></p>
}
}