I’ve searched for an answer to this for days with no joy, and am confident I’ll get a solution here.
In brief…
I have an asp:Repeater, and it is working beautifully, populating from the code-behind. The page, however, is very plain looking, and the owner wants to put an image in the upper right corner. Sounds simple enough.
Wrapping text around an image is something I can do.
Populating a repeater is also something I can do.
What I can’t seem to figure out is how to wrap the text around a single image IN the repeater.
=======
Other options?
The idea here is, these are comments and tips from a soccer coach to his team. They are usually one short paragraph with a date and title. They will display for 90 days and then drop off.
Is there something better than a repeater to use for this? It seemed like the best way to go, but I’m a novice with C# and asp.Net.
If you want a single image for the entire repeater, put an image control in the HeaderTemplate, like so:
If you want an image for each comment/tip, put the image control in the ItemTemplate, like so:
Is this what you are trying to accomplish?