Hi
I have aspx.vb code that programatically displays up to 200 photos jpgs on a page depending on the user's photo-location filter selected. E.g. fGetPhotosHTML returns:
<div class='standard-photo'>
<img src='photos/1243904343.jpg' id='photo1243904343' alt='' >
</div><div class='standard-photo'><img src='photos/1243904344.jpg' id='photo1243904344' alt='' ></div><div class='standard-photo'><img src='photos/1243904348.jpg' id='photo1243904348' alt='' ></div>
etc...
I want to add a little empty star image over the top-left of each photo so the user can click it to save it as a favorite. When the clicks it I want the star image to change to a solid star and the backend code to run to update the database. E.g.
<div class='standard-photo'>
<img src='photos/1243904343.jpg' id='photo1243904343' alt='' > ...
Go to the complete details ...