I know there's a lot of questions about the subject, but my situation is sort of different. I'm trying to display 3 images in one datalist cell, for example I have a product table in SQL server that can have multiple images.
Image Mapping table
ID URL_Mapping_ID ProductID
1 image 1.png 1
2 image 2.png 1
3 image 3.png 1
Product Table
ProductID Product
1 Chips
Upon selecting it from SQL, the result is multiple rows but with different Images.
Now on my asp datalist I have to show 1 product with all the images, so that the user can enlarge the thumbnails.
What will the best way be to implement this scenario?