Hello All,
I have created zip file and after that i want to open that Zip file and i have write that code but its getting me error below
'0x800a139e - JavaScript runtime error: Sys.WebForms.PageRequestManagerParserErrorException: The message received from the server could not be parsed. Common causes for this error are when the response is modified by calls to Response.Write(), response filters,
HttpModules, or server trace is enabled.'
WebClient req1 = new WebClient();
HttpResponse response = HttpContext.Current.Response;
response.Clear();
response.ClearContent();
response.ClearHeaders();
response.Buffer = true;
response.AddHeader("Content-Disposition", "attachment;filename=\"" + archiveName + "\"");
byte[] data = ...
Go to the complete details ...