I have a simple ASPX page which has a list of links to documents which are stored in a SQL Server a database.
When a link is clicked on the page an ASHX handler is called which retrieves the document from the database and serves it up to the user using a binarywrite to the response
For larger documents I would like to present some feedback to the user so that they know that the document is coming. However due to the fact that it is the ashx handler that is downloading the document I am not sure how I would do this.