Posted on: 12/26/2013 6:07:28 PM | Views : 923

I have an application where the user can select any number od documents from a checkbox list and then they hit a button it merges all the documents together and displays on and aspx page the final pdf.  This has been working in all browsers until recently.  It now works in all browsers except chrome.  Has something recently changed that would cause this to now fail?
In chrome I now just get a screen with a loading icon but  the report never loads.
protected void btnSubmit_Click(object sender, EventArgs e) { ArrayList arrForms = new ArrayList(); int i = 0; Response.Clear(); foreach (ListItem listItem in cbForms.Items.Cast <ListItem>().Where(listItem => listItem.Selected)) { arrForms.Add(listItem.Value); i++; } if (i > 0) { _documents = ne ...

Go to the complete details ...