472,127 Members | 2,129 Online
Bytes | Software Development & Data Engineering Community
Post +

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 472,127 software developers and data experts.

ASP.NET Image Scroll Issues

I have made a Image Scroll
the Images are sourced from SQL database

The Image start scrolling from the bottom...but i want the Image to start from top...

----------------------------------------------
<marquee scrollamount="3" direction="up"><asp:DataGrid id="clients" runat="server" Height="10px" AutoGenerateColumns="false" BorderWidth="0">
<Columns>
<asp:TemplateColumn>
<ItemTemplate>
<table border=0 cellpadding=0 cellspacing=0>
<tr>
<td>
<img height="40" src='<%#DataBinder.Eval(Container.DataItem, "clients_Logo")%>' width="97" />
</td>
</tr>
<tr>
<td height=5px>
</td>
</tr>
</table>
</ItemTemplate>
</asp:TemplateColumn>
</Columns>
</asp:DataGrid></marquee>

----------------------------------------------
Feb 26 '07 #1
0 2100

Post your reply

Sign in to post your reply or Sign up for a free account.

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.