Hi,
How to retrive multiple image from database in Asp.net on Image control.
Database column have sstudent id(int), name(varchar),photo(varBinarymax),sig(varbinarymax) & doc(varbinarymax) in Sql Server,
I have inserted all details in Database successfully. But unable to retrive these on Web Page,
Kindly assist.
Loading
Umesh KumarPosted Apr 23, 2014, 11:33 AM
Create a regular HTML img element like so:
And in code behind do this:
Where imageBytes is a
byte[]You are done. The image will be displayed.
Umesh KumarPosted Apr 23, 2014, 11:32 AM