Hi,
Could you ingore all codes about Aspose.Cells and only open the file with FileStream and write it to response? See following codes:
FileStream fs = File.Open(@"F:\FileTemp\book1.xls");
byte[] buffer = new byte[fs.Length];
fs.Read(buffer, 0, buffer.Length);
Response.OutputStream.Write(buffer, 0, buffer.Length);
And we will check this issue on VS2008 with AJAX.
Simon Zhao
Developer
Aspose Nanjing Team
Contact Us