行。几天前我问了一个问题如何在不使用数组的情况下生成100,1000,10,000等随机数,我的问题被删除了,因为答案可能并不那么明显。我用简单的解决方案得到了它,但现在我有另一个问题。我在这里尝试的是用不同的随机数填充每个动态创建的Label。我不知道为什么每10行总是得到相同的数字。以下是我正在努力工作的代码:
protected void btnExample1Random_Click(object sender, EventArgs e)
{
//Making the controls visible
this.Master.FindControl("Div1").Visible = true;
//Generating the random numbers
for (int i = 0; i < 10; i++)
{
Label randomTask = new Label();
Label emptyTask = new Label();
TextBox userInputTextBox = new TextBox();
Random rnd = new Random();
int caseInt = rnd.Next(1, 4), myNum = 0;
switch (caseInt)
{
case 1:
caseInt = 100;
myNum = rnd.Next(1, 100);
break;
case 2:
caseInt = 1000;
myNum = rnd.Next(1, 1000);
break;
case 3:
caseInt = 10000;
myNum = rnd.Next(1, 10000);
break;
}
//Forming the controls
randomTask.ID = "lbl" + i.ToString();
randomTask.Text = caseInt.ToString() + " - " + myNum.ToString() + " ";
userInputTextBox.ID = "box" + i.ToString();
emptyTask.ID = "check" + i.ToString();
//Adding the controls into the placeholder
phTutorijal1.Controls.Add(randomTask);
phTutorijal1.Controls.Add(userInputTextBox);
phTutorijal1.Controls.Add(emptyTask);
phTutorijal1.Controls.Add(new LiteralControl("<br />"));
}
//Separating the next created controls into new line
phTutorijal1.Controls.Add(new LiteralControl("<br />"));
}
此代码中存在一个我无法找到的错误。生成到占位符中的每10行具有相同的数字。我在这里想念的是什么?
更新:Michael Liu发现我的错误在哪里:我需要将Random rnd = new Random();
放在for循环之外