Displaying images horizontaly
-
Hey, I'm displaying a web page which pulls images from a database and displays them on the screen. I want to display these images vertically, so they go from left to right, not top to bottom. Im using c# and a mysql db. I have tried using a datagrid to display all results pulled form the db, but this displays them down the screen and I cant find anyway to change this. Is there a better way to do this without using a datagrid? or can I make the datagrid display them vertically? Cheers. MySweet10!
-
Hey, I'm displaying a web page which pulls images from a database and displays them on the screen. I want to display these images vertically, so they go from left to right, not top to bottom. Im using c# and a mysql db. I have tried using a datagrid to display all results pulled form the db, but this displays them down the screen and I cant find anyway to change this. Is there a better way to do this without using a datagrid? or can I make the datagrid display them vertically? Cheers. MySweet10!
Use a Repeater, and set it to create a table with just one row, and a column for each image.
Christian Graus - C++ MVP 'Why don't we jump on a fad that hasn't already been widely discredited ?' - Dilbert
-
Use a Repeater, and set it to create a table with just one row, and a column for each image.
Christian Graus - C++ MVP 'Why don't we jump on a fad that hasn't already been widely discredited ?' - Dilbert