我正在尝试用每列中的随机颜色填充表格(粗略的想法以表格形式创建图像)(我可能听起来有点好笑)。 我用下面给出的代码创建了一个视图但是给了我OutOfMemoryException。任何形式的帮助都会很明显。 我在MVC应用程序中这样做。
<table>
@(int i=0;i<10;i++)
{
red = random.Next(0, 255);
green = random.Next(0, 255);
blue = random.Next(0, 255);
hexColour = String.Format("#{0:X2}{1:X2}{2:X2}", red, green, blue);
<tr style="height:1px !important; width:1px !important;background-color:'@hexColour'">
@{
for(int j=0;i<10;j++)
{
red = random.Next(0, 255);
green = random.Next(0, 255);
blue = random.Next(0, 255);
hexColour = String.Format("#{0:X2}{1:X2}{2:X2}", red, green, blue);
<td style="height:1px !important; width:1px !important;background-color:'@hexColour'"></td>
}
</tr>
}
}
</table>
先谢谢
答案 0 :(得分:3)
for(int j=0;i<10;j++)
应该是:
for(int j=0;j<10;j++)