Expose the pdf to the user from memory

Hi,

in my asp.net application i icreate pdf documents dinamicaly(by client request..),

after create and save it on my local , i expose the pdf to the user by :

Response.WriteFile(fileRealName)

is ther a way to expose the pdf to the user from memory?(to skip the Save step)

i dont want to save each pdf on my local

any help will be appreciated

Shlomit

Hi Shlomit,

Thank you for considering Aspose.

You can simply save the PDF into a memory stream. Please refer to public void Save(Stream);

Thanks alot!!