protected void Button1_Click(object sender, EventArgs e)
{
for (int i = 0; i < 100; i++)
{
Page.ClientScript.RegisterClientScriptBlock(GetType(), "myScript", "<script>alert('hello world');</script>");
}
}
Is there a way to have the alert execute each time in the iteration rather than just once?