Posted on: 5/18/2015 4:35:10 PM | Views : 632

I want to display images in my crystal report from every user , so in my webforms in order to display images I use an ashx handler , I have the file in my server's folder and the name of the images in database. What do I need to do to display images from handler ashx in crystal reports

Dim selectSQL As String selectSQL = "select * from ool.tblpostulante where idAlum=@idalumno" Dim con As New SqlConnection(conString) Dim cmd As New SqlCommand(selectSQL, con) Dim olector As SqlDataReader Try con.Open() cmd.Parameters.AddWithValue("@idalumno", Session("IDAlumno")) olector = cmd.ExecuteReader() olector.Read() rutafotopostu = olector("rutafotoPostu").ToString olector.Close() con.Close() ImgP ...

Go to the complete details ...