Dear All,
I am developing an application in asp.net using C#. In my application there is a page where I have to display all the images from a particular folder. Each Image will have a HTML Button called "Select". When user will click the Select button then the corresponding image path will set as SRC of another HTML Image. Display of all images will be in a HTML Table. The following HTML code is displaying the image with button (Hardcoded), I have to make it dynamic.
<table class="table table-bordered text-center"> <tr> <td> <img src="images/Designations/abr.jpg" /></td> <td> <img src="images/Designations/abrm.jpg" /></td> <td> <img src="images/Designations/cba.jpg" /></td> ...

Go to the complete details ...