Click here to Skip to main content
15,881,172 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
How to show database data in marquee using asp.net
HTML
<marquee><%=database%><marquee>
Posted
Updated 31-Dec-11 8:19am
v3

Try this, this may help you

XML
<marquee scrollamount="1" scrolldelay="1" onmouseover="this.stop()"
                   onmouseout="this.start()" direction="left"
                   style="margin-top: 0px; margin-left: 6px;" class="style41">

  <asp:repeater id="Repeater1" runat="server" xmlns:asp="#unknown">
  <itemtemplate>
  <img src="Image/images.jpeg" alt="" />
  <asp:label id="Label1" runat="server" text="<%#Eval("name")%>" font-italic="true" font-size="11px" forecolor="#FF6666"></asp:label>
  </itemtemplate>
  </asp:repeater>


BTW : Happy New Year, this is my first post for this Year :rose:
 
Share this answer
 
Comments
Member 8674009 5-Mar-12 7:57am    
But its runs only single time, not moving as loop.
Member 8674009 5-Mar-12 7:58am    
How can i making the marquee as loop
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900