Click here to Skip to main content
15,913,233 members
Home / Discussions / ASP.NET
   

ASP.NET

 
QuestionWriting a client app for OData Pin
simpledeveloper29-Jan-20 7:13
simpledeveloper29-Jan-20 7:13 
QuestionDropdown Filtering in grideview vb.net Pin
Member 315525329-Jan-20 4:16
Member 315525329-Jan-20 4:16 
QuestionFiles download fails for ipad and iphone clients Pin
alesanndro28-Jan-20 20:34
alesanndro28-Jan-20 20:34 
I have a web application based in aspnet 4.5 that is running on a Windows 2016 Server with IIS 10. The app allows to client the downloading of several documents (img, pdf, zip files). All works correctly from several years but starting from 4 weeks to now ios based client (ipad and iphone running 13.3 ios) receive corrupted files. Looking at the logs I have seen that the client closes the connection abnormaly.
this is the code snippets i use to send files:
   Response.Clear();
                System.IO.FileInfo fInfo = new System.IO.FileInfo(allegatizipfilename);
                Response.AddHeader("Content-Length", fInfo.Length.ToString());
                Response.AddHeader("Content-disposition", "attachment; filename=allegati.zip");
                Response.ContentType = "application/octet-stream";
                Response.TransmitFile(allegatizipfilename);
                Response.Flush(); 
Response.End();


I have tried to disable http2, to allow longer connection time, to reduce the minimal connection speed all with no results.

What is strange to me is the fact that anything worked fine till some week ago and nothing was changed in the server configuration nor the software code.

Anyone has the same issue ?
AnswerRe: Files download fails for ipad and iphone clients Pin
Nathan Minier29-Jan-20 5:42
professionalNathan Minier29-Jan-20 5:42 
GeneralRe: Files download fails for ipad and iphone clients Pin
alesanndro29-Jan-20 6:51
alesanndro29-Jan-20 6:51 
GeneralRe: Files download fails for ipad and iphone clients Pin
Nathan Minier29-Jan-20 9:28
professionalNathan Minier29-Jan-20 9:28 
GeneralRe: Files download fails for ipad and iphone clients Pin
alesanndro30-Jan-20 1:24
alesanndro30-Jan-20 1:24 
GeneralRe: Files download fails for ipad and iphone clients Pin
Nathan Minier30-Jan-20 6:01
professionalNathan Minier30-Jan-20 6:01 
QuestionProcedure or function 'bla' expects parameter '@OrderNumber', which was not supplied. Pin
Johan Hakkesteegt27-Jan-20 21:50
Johan Hakkesteegt27-Jan-20 21:50 
AnswerRe: Procedure or function 'bla' expects parameter '@OrderNumber', which was not supplied. Pin
F-ES Sitecore27-Jan-20 23:20
professionalF-ES Sitecore27-Jan-20 23:20 
GeneralRe: Procedure or function 'bla' expects parameter '@OrderNumber', which was not supplied. Pin
Johan Hakkesteegt27-Jan-20 23:50
Johan Hakkesteegt27-Jan-20 23:50 
AnswerRe: Procedure or function 'bla' expects parameter '@OrderNumber', which was not supplied. Pin
Richard Deeming28-Jan-20 1:04
mveRichard Deeming28-Jan-20 1:04 
QuestionDisplaying two images but code is for single image Pin
UDTWS27-Jan-20 19:33
UDTWS27-Jan-20 19:33 
QuestionDynamically updating the site with progress bar Pin
iinfoque11127-Jan-20 7:46
iinfoque11127-Jan-20 7:46 
QuestionRe: Dynamically updating the site with progress bar Pin
ZurdoDev27-Jan-20 9:00
professionalZurdoDev27-Jan-20 9:00 
AnswerRe: Dynamically updating the site with progress bar Pin
iinfoque11127-Jan-20 18:58
iinfoque11127-Jan-20 18:58 
GeneralRe: Dynamically updating the site with progress bar Pin
ZurdoDev28-Jan-20 0:26
professionalZurdoDev28-Jan-20 0:26 
AnswerRe: Dynamically updating the site with progress bar Pin
David Mujica29-Jan-20 5:57
David Mujica29-Jan-20 5:57 
QuestionHow to I fix "The method or operation is not implemented"? Pin
Member 1140330424-Jan-20 8:59
Member 1140330424-Jan-20 8:59 
AnswerRe: How to I fix "The method or operation is not implemented"? Pin
Blikkies26-Jan-20 21:48
professionalBlikkies26-Jan-20 21:48 
QuestionHow to use FCKeditorV2 instead of FreeTextBox ? Pin
Member 245846714-Jan-20 20:41
Member 245846714-Jan-20 20:41 
SuggestionRe: How to use FCKeditorV2 instead of FreeTextBox ? Pin
Richard Deeming15-Jan-20 0:51
mveRichard Deeming15-Jan-20 0:51 
GeneralRe: How to use FCKeditorV2 instead of FreeTextBox ? Pin
jkirkerx15-Jan-20 10:24
professionaljkirkerx15-Jan-20 10:24 
GeneralRe: How to use FCKeditorV2 instead of FreeTextBox ? Pin
Member 245846715-Jan-20 15:17
Member 245846715-Jan-20 15:17 
GeneralRe: How to use FCKeditorV2 instead of FreeTextBox ? Pin
jkirkerx16-Jan-20 7:26
professionaljkirkerx16-Jan-20 7:26 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.