Implementation ideas and codes for ASP. NET large File download

Source: Internet
Author: User

File download is the most basic function of a website, ASP. NET Web site file Download function is also very simple, but if you encounter large file download without special treatment, it will have unpredictable consequences. This article is based on ASP to provide large file download implementation ideas and code.

When our site needs to support downloading large files, if you do not control may cause users to access the download page when the unresponsive, causing the browser to crash. You can avoid this problem by referring to the following code.

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 6667686970 using System;namespace WebApplication1{    public partial class DownloadFile : System.Web.UI.Page    {        protected void Page_Load(object sender, EventArgs e)        {            System.IO.Stream iStream = null;            // Buffer to read 10K bytes in chunk:            byte[] buffer = new Byte[10000];            // Length of the file:            int length;            // Total bytes to read.            long dataToRead;            // Identify the file to download including its path.            string filepath = Server.MapPath("/") +"./Files/TextFile1.txt";            // Identify the file name.            string filename = System.IO.Path.GetFileName(filepath);            try            {                // Open the file.                iStream = new System.IO.FileStream(filepath, System.IO.FileMode.Open,                            System.IO.FileAccess.Read, System.IO.FileShare.Read);                // Total bytes to read.                dataToRead = iStream.Length;                Response.Clear();                Response.ClearHeaders();                Response.ClearContent();                Response.ContentType = "text/plain"; // Set the file type                Response.AddHeader("Content-Length", dataToRead.ToString());                Response.AddHeader("Content-Disposition", "attachment; filename=" + filename);                // Read the bytes.                while (dataToRead > 0)                {                    // Verify that the client is connected.                    if (Response.IsClientConnected)                    {                        // Read the data in buffer.                        length = iStream.Read(buffer, 0, 10000);                        // Write the data to the current output stream.                        Response.OutputStream.Write(buffer, 0, length);                        // Flush the data to the HTML output.                        Response.Flush();                        buffer = new Byte[10000];                        dataToRead = dataToRead - length;                    }                    else                    {                        // Prevent infinite loop if user disconnects                        dataToRead = -1;                    }                }            }            catch (Exception ex)            {                // Trap the error, if any.                Response.Write("Error : " + ex.Message);            }            finally            {                if (iStream != null)                {                    //Close the file.                    iStream.Close();                }                Response.End();            }        }    }}

  A few notes about this code:

1. Divide the data into smaller parts and then move it to the output stream for download to get the data.

2. Specify Response.ContentType according to the file type you downloaded. (refer to this URL for Oschina to find the table of most file types: http://tool.oschina.net/commons)

3. Remember to call Response.Flush () every time you finish writing Response

4. Using response.isclientconnected during a cyclic download can help the program find out if the connection is working as soon as possible. If it is not normal, you can abandon the download early to release the server resources that are occupied.

5. After the download is complete, you need to call Response.End () to ensure that the current thread can be terminated at the end.

Via:codeceo

Implementation ideas and codes for ASP. NET large File download

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.