Click here to Skip to main content
15,891,607 members
Please Sign up or sign in to vote.
4.50/5 (2 votes)
See more:
In my Project,I have To Add The News,Announcement from The DataBase To The Home Page Using Marquee.Can Anyone Suggest Me,How To Add this To My project?


with Regards
NanKi
Posted

1 solution

Dear Friend,

Try this code:-
<marquee id="ml" style="text-align: center" direction="up" width="195" height="170">
                                scrolldelay="20" scrollamount="1" onmouseover="ml.stop();" onmouseout="ml.start();">
                                <asp:repeater id="Repeater1" runat="server" datasourceid="dtsLinks" xmlns:asp="#unknown">
                                <itemtemplate>
                                <br />                            
                                <div style="width: 150px">
                                    <asp:imagebutton width="150px" height="75px" id="ImageButton1" runat="server">
                                        ImageUrl='<%# String.Format("~\\img\\Links\\{0}",Eval("logo")) %>' PostBackUrl='<%# Eval("link") %>' ToolTip='<%# Eval("title") %>' /><br />
                                </asp:imagebutton></div>
                                <asp:hyperlink id="HyperLink1" runat="server" navigateurl="<%# Eval("link") %>">
                                    <asp:label id="Label1" runat="server" text="<%# Eval("title") %>"></asp:label></asp:hyperlink><br />
                            
                            </itemtemplate>
                            </asp:repeater>

</marquee> 


These link will be of much help to you:-

http://allen-conway-dotnet.blogspot.in/2010/03/how-to-create-scrolling-news-marquee.html[^]

http://mattberseth.com/blog/2008/01/cnn_style_scrolling_ticker_wit.html[^]

http://wiki.asp.net/page.aspx/1501/fetch-data-from-the-database-and-place-it-in-a-marquee/[^]

http://stackoverflow.com/questions/5386977/dynamic-marquee-in-asp-net[^]
 
Share this answer
 
v2

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