Ramco Ramco

Ramco Ramco

  • 463
  • 2.9k
  • 406.2k

How to display Image

Jan 19 2023 5:57 AM

Hi

In below code I want to display image but it is not displayed. Image is saved in LMS/Upload/Student/ProfilePic folder

Data in database is - VIV_ST_0003_18_01_2023_15_06_39.png

BALStudents bALStudents = new BALStudents();
StudentDetail Result = bALStudents.GetStudentDetailByLoginID(Convert.ToInt32(hdfStudentID.Value));

if (Result != null)
{
    imgProfile.ImageUrl = Result.ProfilePic;
}

Thanks


Answers (3)