Click here to Skip to main content
15,867,568 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
While am exporting crystal report to .html format it is not showing page headers in any page and it is not showing page numbers also, showing page number only in the last page.

I am using memory stream to write data into a specific file.
ex:
HttpResponse response = HttpContext.Current.Response;
MemoryStream stream ;
stream = (MemoryStream)reportDoc.ExportToStream(CrystalDecisions.Shared.ExportFormatType.HTML40);
response.ContentType = "text/html";
response.BinaryWrite(stream.ToArray());

Need help urgently.

Please help me to solve this problem.

I tried to add screen shot but it is not adding here.
Posted
Updated 20-Mar-14 22:04pm
v2
Comments
thatraja 19-Mar-14 9:45am    
Include screenshot in your question

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900