GridView (Vertical Limit :))

  • Thread starter Thread starter Dot Net Daddy
  • Start date Start date
D

Dot Net Daddy

Hello,

As far as I know GridView is so flexible and I think it should be able
to do this:

I have a database containing URL for images. On the GridView I want to
show all these images using ImageField property in GridView. But I want
to show 3 pictures on every row.
It is limited to 1image/row.

How can I do this?

Thanks in advance.
 
As far as I understand you want not to show three images of the same
database row but images of thre different database rows.
This is not what a grid is intended for. I do this using a datalist control
where the repeatcolumns is set to whatever you want and repeatdirection is
set to horizontal.

Patrick
 
Back
Top