I have an asp.net 3.5 application which contains gridview, having checkbox as one of the column.
If user doesn't select any checkboxes and clicks submit button, alert is firing prompting user to select the button.
The code to fire the alert is as below;
System.Text.StringBuilder sb = new System.Text.StringBuilder();
sb.Append(@"<script language='javascript'>");
sb.Append(@"alert('Please select at least one record!')");
sb.Append(@"</script>");
ScriptManager.RegisterStartupScript(upnlGrid, this.GetType(), "GridView", sb.ToString(), false);
BindGrid();
Until the alert gets fired, i see "Loading..." image (ajax update progress bar), which is fine. But then after the alert gets fired i still need to see the same image, which is not visible. due to which the page gets hangedup for some seconds (5-10 seconds). For that 5-10 seconds i need to show the Loading Image.
Please guide!