I have some reports that require multiple images to be loaded. The image paths are stored in the database. Once I add the placeholders for the images, I must assign the correct image to the appropriate placeholder. I can retrieve the placeholder element from the document layout using GetElementById() method and then add an event handler for the LaidOut event. However, I don't won't to have to create a different handler for every image I need to load. The event handler's arguments do not seem to provide the element id of the placeholder, so I'm not sure which placeholder is currently being laid out, and thus can't place the corrent image in the placeholder. Has anyone found an easier way to accomplish this?
Thanks,
Matt