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;
}
link|improve this question

66% accept rate
feedback

1 Answer

up vote 0 down vote accepted

I learned that you can also give imageurl to hyperlinks, and that solves the problem.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.