Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8961817
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 15, 20262026-06-15T15:58:48+00:00 2026-06-15T15:58:48+00:00

I have an application that generates 50,000 records containing certain information. Once generated and

  • 0

I have an application that generates 50,000 records containing certain information. Once generated and saved to the database, the user can download the records as csv any time they like from a control panel.

The problem I am getting is that it can take anything up to 40+ seconds to generate the CSV. But by the time its finished processing, the browser no longer tries to download it. Instead it just hangs.

I have currently set a high timeout value so the processing won’t timeout. Also I need to it be generated on the fly as it needs to contain related live data in with it.

Does anyone know why it doesn’t download after waiting for the file to generate?

Heres the headers I respond with once generated:

//**generate the csv as string here, and then...**
Response.Clear();
Response.AddHeader("content-disposition", string.Format("attachment;filename=file_{0}.csv", batchId));
Response.ContentType = "text/csv";
Response.Write(csv);
Response.End();
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-15T15:58:49+00:00Added an answer on June 15, 2026 at 3:58 pm

    Don’t generate the entire csv file up front. Write records to the stream as you retrieve them from the database. You want code that looks something like this:

    Response.Clear();
    Response.AddHeader("content-disposition", string.Format("attachment;filename=file_{0}.csv", batchId));
    Response.ContentType = "text/csv";
    
    using (SqlDataReader rdr= GetDataForCSV())
    {
        int i = 0;
        while (rdr.Read())
        {
           Response.Write(CSVFromIDataRecord(rdr));
           Response.Write("\n");
           if (i % 50 == 0)
           {
               //flush the output stream every now and then
               Response.Flush();
           }
        }
        rdr.Close();
    }
    Response.End();
    

    Note that I don’t advocate this exact code. For example, there are some issues using an SqlDataReader in this way that fall outside the scope of the question. You’ll also want to set up the number of records between each flush call such that you take good advantage of your IIS server’s response buffer, depending on your specific average record size. I would make some other changes in production as well, but this should be enough to point you in the right direction.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have one an application that generates .pcl files. Once generated they are saved
I have an application that generates an H2 database. When I execute the application
I have an application that generates barcode in image format and it is read
I have a application that generates a couple of different mails. These mails are
I have an application that generates around 10000 printed pages per month. Each report
I have an application that generates xml files, and they might contain special characters.
I have a Winforms application that generates its own PrintDocument object for printing. It
I have a simple c++ application that generates reports on the back end of
I have an application that takes some input and generates configuration files as output.
Background: I have an application that, when installed, generates a random identifier (AppId). When

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.