J
Jan Tielens
Hi
1)
You could return the memorystream as a Byte Array:
[WebMethod]
public byte[] GetPDF()
{
System.IO.MemoryStream ms = new
System.IO.MemoryStream();
//... do stuff
return ms.ToArray();
}
2) I would use the Acrobat Reader.
Jan
1)
You could return the memorystream as a Byte Array:
[WebMethod]
public byte[] GetPDF()
{
System.IO.MemoryStream ms = new
System.IO.MemoryStream();
//... do stuff
return ms.ToArray();
}
2) I would use the Acrobat Reader.
Jan