Hi,
use Datalist to display images..

<asp:DataList ID="dlImages" runat="server" RepeatColumns="3" RepeatDirection
="Horizontal" Width="100%" CellPadding="2" CellSpacing="0">

 <ItemTemplate>

  <img src='<%# Eval("FullName") %>' style="border:1px solid gray;" />

 </ItemTemplate>

</asp:DataList>


On Mon, Aug 3, 2009 at 11:53 AM, graphicsxp <[email protected]>wrote:

>
> Hi,
>
> Is there a control in ASP.Net that I can use to display a grid of
> images ?
>
> I want to display images which paths are stored in a database. The
> user should be able to view up to 20 thumbnail images at a time (5
> rows * 4 columns) and be able to go to next 20 records and previous 20
> records.
>
> My problem is I don't know which control I can use to achieve this
> sort of layout. A Datagrid or DataRepeater don't seem to be
> appropriate.
>
> thanks

Reply via email to