I´ve followed the tutorial on this site to create a site that access a db with a xmlconnector and a dataset.
I´ve modified it a lot, because my needs are a lot simplier, just have to access one row of the db and then put 3 of 4 rows in labels.
The 4th row is an image and I only need the path to the image, so i tried doing this:
imagen.load("images/"+ dataset.items[0].imagen)
also tried this
imagen.load("products/"+ dataset.imagen)
but without success
when doing this
pepe = dataset.items[1].id
(pepe is a dynamic textbox) i get undefined at the textbox
how can i access the rows in a dataset with code?
PechE
thanks