I want to display multiple pdf files in internet explorer actually i'm using this code to display
pdf files
MemoryStream
document.Open();
document.Add(p2);
document.Add(p3);
document.Add(p1);
document.Close();
byte
Response.Clear();
Response.ClearHeaders();
Response.ClearContent();
Response.ContentType =
Response.AppendHeader(
Response.AddHeader(
Response.BinaryWrite(byteArray);
above code is in loop it executes one time bt at second time it display error that 'Cannot access a closed Stream.'
when i write document.close() after loop then it displays error so plz help me.