vote up 2 vote down star

I am downloading a file using the code

btnDownloadTemplate.Attributes.Add( "onClick", "window.open('StudyReport/WordReportTemplate.doc', 'OpenTemplate', 'resizable=no,scrollbars=no,toolbar=no,directories=no,status=no,menubar=no,copyhistory=no');return false;" );

This will show a popup and the download dialog is shown. How can I avoid the popup and only the download dialog is on the screen?

flag

I wrote an answer and all, but I have second thoughts, I'm not sure I get it... If you want something that downloads a file when you click on it, why can't you use a regular link? – Kobi Aug 18 at 19:21

5 Answers

vote up 1 vote down

Don't do a Window.Open, just change the URL of the page to be the document.

link|flag
vote up 0 vote down

Have you looked at the HttpResponse.WriteFile method?

link|flag
vote up 1 vote down check

I got the answer. I remove the Attributes and add the click event and in it.

    string path = Server.MapPath("");
    path = path + @"\StudyReport\WordReportTemplate.doc";
    string name = Path.GetFileName( path );
    Response.AppendHeader( "content-disposition", "attachment; filename=" + name );
    Response.ContentType = "Application/msword";
    Response.WriteFile( path );
    Response.End();
link|flag
1  
Using Response.TransmitFile is more efficient than WriteFile, because it does not require the raw data to be buffered. – Josh Stodola Jun 25 at 19:20
vote up 0 vote down

Also, you can just use window.location instead of window.open.

var file = 'StudyReport/WordReportTemplate.doc'; window.location = file;

link|flag
vote up 1 vote down

A common trick is to open the link in an <iframe>. This doesn't require JavaScript, and won't open popups or blank tabs. The <iframe> can be very small, so it's almost invisible.

<iframe name="DownloadDummy">
</iframe>

And the link:

<a href="http://example.com/file.csv" target="DownloadDummy">Download File</a>
link|flag

Your Answer

Get an OpenID
or

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