Hi and Good Day!
I have an .aspx page that I would like to generate 2 reports, e.g., Offer.rpt (details) and Letter.rpt (covering letter), which I want to be printed simultaneously in just one click of a button. I tried inserting the second part just next from the first, but only the first page was called and only the Offer.rpt was printed.
// for Offer.rpt
Session["codate"] = forfiltering;
Session["brokercode1"] = DropDownList1.Text;
Response.Redirect("Offer.aspx");
// for Letter.rpt
Session["brokercode2"] = DropDownList1.Text;
Response.Redirect("Letter.aspx");
Could anyone give me a sample procedure or the correct way of coding these? Thank you!
Bo
Edited by botete - 22 Oct 2007 at 1:04am