This is the folder nameof the images src = 'PROFILEPHOTOS
here is the table holding the imagename
CREATE TABLE [dbo].[User3](
[UserId] [int] IDENTITY(1,1) NOT NULL,
[Name] [nvarchar](500) NOT NULL,
[Email] [nvarchar](500) NULL,
[UserName] [nvarchar](200) NULL,
[Password] [nvarchar](500) NOT NULL,
[BirthDay] [date] NULL,
[Country] [nvarchar](500) NULL,
[ImageName] [nvarchar](505) NULL,
[RegisterdDate] [date] NULL,
[UserVerifyStatus] [nvarchar](505) NULL,
[LastLogin] [datetime] NULL,
CONSTRAINT [PK_User3] PRIMARY KEY CLUSTERED
Table diagram
UserId Name UserName ImageName
---------------------------------------------------
1 Kate Kate22 IMG-20150925-WA.jpg
----------------------------------------------------------
So i cant figure out what the issue is