I\'ve tried a lot to find that how can I load an image from SQL Server to picture box but I couldn\'t find very much helpful material.
First I saved image into the d
See Muhammad, what we do when dealing with Images in dynamic scenarios is the following:
Upload the image to some web application directory (like /images/ or something)
We store the URL address in the database field of the table.
Place where you want to include the image, just set the image source to the database field and it will be displayed.
Hope this helps