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

  • Home
  • SEARCH
  • 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 588999
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 13, 20262026-05-13T15:22:40+00:00 2026-05-13T15:22:40+00:00

Here’s the setup: 1 web server running a C# app to which my users

  • 0

Here’s the setup:

  • 1 web server running a C# app to which my users (stored in a MySQL database on said server) authenticate.

  • 1 file server running software TBD. In the past I’ve used lighttpd and mod_secdownload to secure the files on the file servers, and it’s worked well(ish).

I’m wondering if there is a way to do this using a combination of IIS and C# .Net. All my other servers are running that combo, and it would simplify things a bit if I could do the same for the file servers. The kicker is, the files that are being hosted are large. I’ve seen examples of people using a small app to create a FileStream object, read in the file, and create the HTTP Response by hand. This works, but since I’m working with files 500+ MB in size, it’s slow as heck. And I’ll potentially have 300 users hitting the box at once, requesting files. That’s no good.

So, anyone see a way around this? I’m trying to create a more transparent system, and if all my servers are running the same software/hardware, it will make my life a whole lot simpler. Thanks in advance for any advice you give!

  • 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-05-13T15:22:40+00:00Added an answer on May 13, 2026 at 3:22 pm

    You know what? The KB article is poo. Here is my official recommendation:

    public void StreamFile(string filePath)
    {
        string fileName = Path.GetFileName(filePath);
    
        using (var fStream = new FileStream(filePath, FileMode.Open, FileAccess.Read, FileShare.Read))
        {
            var contentLength = fStream.Length;
    
            if (Request.UserAgent.Contains("MSIE"))
            {
                Response.AddHeader("Content-Transfer-Encoding", "binary");
            }
    
            Response.ContentType = "application/octet-stream";
            Response.AddHeader("Content-Length", contentLength.ToString());
    
            // Even though "Content-Disposition" should have an upper-case "d", as per http://www.ietf.org/rfc/rfc2183.txt
            // IE fails to recognize this if the "d" is upper-cased.
            Response.AddHeader("Content-disposition", "attachment; filename=" + fileName);
    
            var buffer = new byte[8192];
    
            while (Response.IsClientConnected)
            {
                var count = fStream.Read(buffer, 0, buffer.Length);
                if (count == 0)
                {
                    break;
                }
    
                Response.OutputStream.Write(buffer, 0, count);
                Response.Flush();
            }
        }
    
        Response.Close();
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

No related questions found

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.