+1  A: 

It appears as though the decision process is up to Microsoft Word after the document is downloaded. At that point it's hands off for the browser because its job is done. You might want to change the Mime Type of the download so Word/IE doesn't immediately recognize it, and the user is forced to save it to disk (and this might be more in line with how other browsers would handle it)....

Edit: Straight from Microsoft, info about how to force a download for a known mime type. If you choose this way, the Content-Disposition header will need to be programmatically set. You will need to customize the download process by replacing Response.Redirect with something else like an ASPX page that modifies its headers as desired for the download (esp. Content-Disposition) and then programmatically reads the file from disk and writes it to the Response output stream. Microsoft has many good code samples in its MSDN docs under the Write methods of the HttpResponse class; you will likely find one or a combination of them that fit.

John K