G
Guest
Hi,
I want to render my response(ASP.NET) as excel format. So I am using
Response.ContentType = "application/vnd.ms-excel";
Response.AddHeader("Content-Disposition", "filename=results.xls");
But I have more than 10,000. Is there any way that I can improve the
response by streaming (uisng MemoryStream or any other Stream class) ?
Thanks,
Raja
I want to render my response(ASP.NET) as excel format. So I am using
Response.ContentType = "application/vnd.ms-excel";
Response.AddHeader("Content-Disposition", "filename=results.xls");
But I have more than 10,000. Is there any way that I can improve the
response by streaming (uisng MemoryStream or any other Stream class) ?
Thanks,
Raja