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>");
}
}
The alert only execute once, is that possible to execute the alert everytime in the iteration?