thanx for quick answer :)
hm...
It would work if the data from the database only contains one "row" of above fields, but the database contains several rows of
picture | name | link
example from database (users):
tre.jpeg | fred | www.fredspage.com
one.jpeg | linda | www.lindaspage.com
two.jpeg | alex | www.alexpage.com
.
.
.
so... I need a component that makes it easy for me to display the data in three columns and for as many rows as the database contains...
Main Topics
Browse All Topics





by: Jon500Posted on 2005-08-31 at 06:25:58ID: 14793406
First, use an Image Control on your page, and set that control's ImageUrl property to the relative path. If you're already doing that and you still don't see the image, it could be that the ImageUrl is actually wrong (it could be missing a slash, etc.). Try using the Browser's "View Source" to see what ImageUrl the page is trying to render, then try to navigate to that same Url by pasting that Url into the Browser.
As far as the Name and Link fields, use the Label and LinkButton controls.
Does this help?
Regards,
-- Jon500