H
Harry Whitehouse
I have an ASPNET page which allows users to download an ~5 MB file after
authenticating. I'm consistently hearing from users on dial-up lines that
the process times out about 1/2 way through. Are there any timeout settings
I need to be aware of in either IIS or the .NET enviornment?
Here's the code I use to download:
Response.Clear();
Response.AddHeader("content-disposition","attachment; filename=" + myfile);
Response.WriteFile(filename);
Response.End();
TIA
Harry
authenticating. I'm consistently hearing from users on dial-up lines that
the process times out about 1/2 way through. Are there any timeout settings
I need to be aware of in either IIS or the .NET enviornment?
Here's the code I use to download:
Response.Clear();
Response.AddHeader("content-disposition","attachment; filename=" + myfile);
Response.WriteFile(filename);
Response.End();
TIA
Harry