I want to write PDF file in aspx page of ASP.NET
I have feild in my database(sql) table with datatype image.
I need to read bytes from db and write it in pdf format in aspx web page.
I dont want to export pdf file.
I want to write PDF file in aspx page of ASP.NET
I have feild in my database(sql) table with datatype image.
I need to read bytes from db and write it in pdf format in aspx web page.
I dont want to export pdf file.
@Zia @John Gathogo Image and varbinary(max) both can be used to store binary data (files) its better to use varbinary(max) as Image is deprecated.
Refer to this for reading pdf file saved in database http://chiragrdarji.wordpress.com/2007/08/31/storing-and-retrieving-docpdfxls-files-in-sql-server/