Hello,
I'am use RadWindows to send download Excel File.
I'am use this Code (C#) :
HttpContext.Current.Response.ContentEncoding = System.Text.Encoding.UTF8;
HttpContext.Current.Response.ContentType = "application/vnd.ms-excel";
HttpContext.Current.Response.AddHeader("Content-Disposition", "attachment;Filename=Export.xls");
HttpContext.Current.Response.Write(_Str_Out);
HttpContext.Current.Response.End();
After this operation, The script of RadWindow return this error :
Sys.WebForms.PageRequestManagerParserErrorException: Impossible d'analyser le message reçu du serveur. Cette erreur peut avoir plusieurs causes possibles : réponse modifiée par des appels à Response.Write(), filtres de réponse, HttpModules ou activation de trace du serveur.
Détails : Erreur d'analyse à proximité de '<?xml version="1.0"?'.
And the box for download File do not appear.
Have you a Suggestions? Examples?
Thanks.
Regards,
Citt_jr
Sorry for my english, I'am French.
I'am use RadWindows to send download Excel File.
I'am use this Code (C#) :
HttpContext.Current.Response.ContentEncoding = System.Text.Encoding.UTF8;
HttpContext.Current.Response.ContentType = "application/vnd.ms-excel";
HttpContext.Current.Response.AddHeader("Content-Disposition", "attachment;Filename=Export.xls");
HttpContext.Current.Response.Write(_Str_Out);
HttpContext.Current.Response.End();
After this operation, The script of RadWindow return this error :
Sys.WebForms.PageRequestManagerParserErrorException: Impossible d'analyser le message reçu du serveur. Cette erreur peut avoir plusieurs causes possibles : réponse modifiée par des appels à Response.Write(), filtres de réponse, HttpModules ou activation de trace du serveur.
Détails : Erreur d'analyse à proximité de '<?xml version="1.0"?'.
And the box for download File do not appear.
Have you a Suggestions? Examples?
Thanks.
Regards,
Citt_jr
Sorry for my english, I'am French.