I have an updateprogress bar, displaying a text "loading". After I hit a imagebutton (I am using it for downloading a file) inside my update panel, with a click event, It calls click function , and click function is like below. The download screen of open, save, close cames. And updateprogress bar displays "loading". But after downloading the file, this "loading" text is not disappearing. What should i do to make it disappear ?
protected void downloadButton_Click(object sender, EventArgs e)
{
Response.Redirect("/temporary_reports/" + "x_report" + "_" + numberOfTicks + ".xls");
return;
}