Hi,
How to dynamically generate the below image tag with links from the database.Number of images should be the number of items in the database.
Can we use listview or repeater to achive this.If yes how ??
<div class="social-icons_box">
<div class="label_social">
Get Social
</div>
<a href="www.youtube.com"><img src="images/youtube.jpg" /></a> <a href="www.twitter.com"><img src="images/twitter.jpg" /></a> <a href="www.facebook.com"><img src="images/facebook.jpg" /></a>
.
.
.
</div>
The database structure of the image table is as follows
Image_Id Image_Type Image_File Image_Location Img_Url
1 jpeg youtube images/youtube.jpg www.youtube.com
2 jpeg facebook images/fb.jpg www.facebook.com
3 jpeg twitter images/twitter.jpg www.twitter.com