How can i display this using asp.net
I wanted it to display the book cover and then the link called read if someone clicks on it shows the content.
I have my table below which stores the book details
CREATE TABLE [dbo].[tblFiles](
[Name] [varchar](650) NULL,
[ContentType] [varchar](50) NULL,
[Data] [image] NULL,
[Years] [nvarchar](50) NULL,
[DateAdded] [datetime] NULL,
[Category] [nvarchar](650) NULL,
[Publisher] [nvarchar](150) NULL,
[id] [int] IDENTITY(1,1) NOT NULL,
CONSTRAINT [PK_tblFiles] PRIMARY KEY CLUSTERED
(
[id] ASC
)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY]
) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY]
GO