Click here to Skip to main content
15,887,416 members
Home / Discussions / ASP.NET
   

ASP.NET

 
AnswerRe: Google Map Pin
nainakarri10-Feb-10 1:03
nainakarri10-Feb-10 1:03 
GeneralRe: Google Map Pin
BK Komal10-Feb-10 1:07
BK Komal10-Feb-10 1:07 
GeneralRe: Google Map Pin
nainakarri10-Feb-10 1:18
nainakarri10-Feb-10 1:18 
GeneralRe: Google Map Pin
BK Komal10-Feb-10 2:12
BK Komal10-Feb-10 2:12 
Questionajax problem Pin
Mogamboo_Khush_Hua9-Feb-10 23:55
Mogamboo_Khush_Hua9-Feb-10 23:55 
AnswerRe: ajax problem Pin
Calla10-Feb-10 0:20
Calla10-Feb-10 0:20 
GeneralRe: ajax problem Pin
Mogamboo_Khush_Hua10-Feb-10 1:11
Mogamboo_Khush_Hua10-Feb-10 1:11 
QuestionNeed help in exporting Crystal report to stream Pin
Hema Bairavan9-Feb-10 22:27
Hema Bairavan9-Feb-10 22:27 
Hi all,

we can use to export a report document to stream by following method,

ReportDocument.ExportToHttpResponse(format,responce,boolattch,attachname);

there is also other method like writing the same to the memory stream and taking out via binary write that is


MemoryStream oStream; // using System.IO
oStream = (MemoryStream)
report.ExportToStream(
CrystalDecisions.Shared.ExportFormatType.PortableDocFormat);
Response.Clear();
Response.Buffer= true;
Response.ContentType = "application/pdf";
Response.BinaryWrite(oStream.ToArray());
Response.End();

the above can be called through button click


and this is the main problem.

in my page due to requirement i have more than one crystal report viewer and obviously more that one report document. my requirement is that to print all the report documents in one pdf file? how to concatenate these things?
can any one help me?
QuestionCurrently in register page and providing login details to login on keypress enter Pin
Nath9-Feb-10 22:20
Nath9-Feb-10 22:20 
AnswerRe: Currently in register page and providing login details to login on keypress enter Pin
sashidhar9-Feb-10 23:34
sashidhar9-Feb-10 23:34 
QuestionStrange Problem with webservice Pin
shankbond9-Feb-10 20:39
shankbond9-Feb-10 20:39 
AnswerRe: Strange Problem with webservice Pin
i gr89-Feb-10 20:56
i gr89-Feb-10 20:56 
GeneralRe: Strange Problem with webservice Pin
shankbond9-Feb-10 21:39
shankbond9-Feb-10 21:39 
NewsRe: Strange Problem with webservice Pin
shankbond13-Feb-10 3:12
shankbond13-Feb-10 3:12 
QuestionListBoxes Manupulation Pin
ovaisgeo9-Feb-10 20:20
ovaisgeo9-Feb-10 20:20 
AnswerRe: ListBoxes Manupulation Pin
Brij9-Feb-10 20:35
mentorBrij9-Feb-10 20:35 
AnswerRe: ListBoxes Manupulation Pin
sashidhar9-Feb-10 21:37
sashidhar9-Feb-10 21:37 
AnswerRe: ListBoxes Manupulation Pin
Sigurd Johansen10-Feb-10 12:14
Sigurd Johansen10-Feb-10 12:14 
QuestionDisplay loading image on postback Pin
Any_India9-Feb-10 20:05
Any_India9-Feb-10 20:05 
AnswerRe: Display loading image on postback Pin
Brij9-Feb-10 20:33
mentorBrij9-Feb-10 20:33 
GeneralRe: Display loading image on postback Pin
Any_India9-Feb-10 20:42
Any_India9-Feb-10 20:42 
GeneralRe: Display loading image on postback Pin
Brij9-Feb-10 20:49
mentorBrij9-Feb-10 20:49 
GeneralRe: Display loading image on postback Pin
Any_India9-Feb-10 21:25
Any_India9-Feb-10 21:25 
GeneralRe: Display loading image on postback Pin
Brij9-Feb-10 22:08
mentorBrij9-Feb-10 22:08 
AnswerRe: Display loading image on postback Pin
i gr89-Feb-10 20:37
i gr89-Feb-10 20:37 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.