<html>
<body>
@{
var i = 0;
while (i < 5)
{
i += 1;
<p>第 @i 行</p>
}
}
</body>
</html>