Hi, I have a large data application website. We dynamically create the pages based on metadata on runtime by adding text and controls to placeholders.
I'm trying to get images added to the placeholder and cannot seem to get it to work. The image will be stored on the record with the application data and will come back as part of the row.
I have all the column values stored in an object array. I Have access to the picture size also.
This seems logical, but Visual Studio is telling me "Value of System.Drawing.Image cannot be converted to System.Web.UI.Control
Dim ms As MemoryStream
Dim picture As Image
ms = DataValue(i_pa ...
Go to the complete details ...