Closed GoogleCodeExporter closed 8 years ago
Please help!
Original comment by chiragbh...@gmail.com
on 1 Jun 2011 at 7:26
I've already done this modifications to enable this.
I hope to check-in tomorrow.
Thank you for waiting.
Original comment by regisbsb...@gmail.com
on 27 Jun 2011 at 11:05
Original comment by regisbsb...@gmail.com
on 27 Jun 2011 at 11:10
Original comment by regisbsb...@gmail.com
on 27 Jun 2011 at 12:40
you can do in .net 4:
MemoryStream m = new MemoryStream(); // Temp Stream
workbook.Save(m);
m.CopyTo(Response.OutputStream);
Original comment by yaniv...@gmail.com
on 4 Jul 2011 at 2:17
Hi,
Is there any update on this?
Thanks for your help,
Chirag
Original comment by chiragbh...@gmail.com
on 29 Jul 2011 at 2:44
Yes, there is.
Please download new Library.
Use like that:
DataSet ds = GetData();
MemoryStream m = new MemoryStream();
ExcelLibrary.DataSetHelper.CreateWorkbook(m , ds);
m.WriteTo(Response.OutputStream);
Original comment by regisbsb...@gmail.com
on 30 Jul 2011 at 2:54
Original comment by regisbsb...@gmail.com
on 30 Jul 2011 at 2:55
it doesnt work, after that the screem show symbols and cant open dialog window
open/save
Original comment by quinto...@hotmail.com
on 28 Aug 2013 at 9:48
��ࡱ�R߆ӛݦB�&�^>#�>��
��������������������������
����������������������������
����������������������������
����������������������������
����������������������������
����������������������������
����������������������������
����������������������������
����������������������������
����������������������������
����������������������������
����������������������������
����������������������������
����������������������������
����������������������������
����������������������������
���������������������
!"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnop
qrstuvwxyz{|}~�Root
Entry��������c�r�8��c�r�8��Workbook�
�����������?y�8��?y�8��A� �
�B�=@ 8
Original comment by quinto...@hotmail.com
on 28 Aug 2013 at 9:53
You need to add this before you write to the output stream
Response.Clear();
Response.ContentType = "application/vnd.ms-excel";
Response.AddHeader("content-disposition", "attachment;filename=Reports.xls");
Original comment by clmsg...@gmail.com
on 26 Jun 2014 at 10:16
Original issue reported on code.google.com by
chiragbh...@gmail.com
on 25 May 2011 at 9:42