Use response. binarywrite to write a file stream

Source: Internet
Author: User
There have been many things recently and I have never written anything.

Write a stream to the client a few days ago Code :

Filestream myfilestream;

  Long Filesize;

 

Myfilestream =   New Filestream = ( " C: \ a.doc " , Filemode. Open );

Filesize = Myfilestream. length;



  Byte [] Buffer =   New   Byte [( Int ) Filesize];

Myfilestream. Read (buffer, 0 ,( Int ) Filesize );

Myfilestream. Close ();

 

Response. addheader ( " Content-Disposition " , " Attachment; filename = " C: \ a.doc " );

Response. contenttype = " Application/octet-stream " ;


Response. binarywrite (buffer );

Run. The IE dialog box opens and downloads the file. However, if you choose to open the file directly, the Word file is not used.

I tried it several times and thought it was a 2003 security issue.

Later I thought of ASP. NET cache, so I added two lines of code.

Response. Flush ();

Response. Close ();

The result is OK.

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.