Hello, Am a dotnet developer and i need ur help. Actually am getting a browser compatibility issue while binding data from the database in between marquee tag. Here am getting design issues in Google chrome only.... Here is my code
<marquee direction="left" loop="30" scrollamount="1" style="text-align: left" onmouseout="this.setAttribute('scrollamount', 2, 0);" onmouseover="this.setAttribute('scrollamount', 0, 0);" scrolldelay="150"> <asp:DataList ID="dlTeluguNews" runat="server" RepeatDirection="Horizontal"> <ItemTemplate> <table cellspacing="2"> <tr> <td> <asp:Image ID="imgbullet" runat="server" ImageUrl="~/images/newsbullet.jpg" Height="15px" /> </td> <td> <a href='TeluguNews.aspx?id=<%#Eval("NewsId") %>'> <asp:Image ID="imgNews" runat="server" ImageUrl='<%# String.Format("~/TeluguNews/{0}", Eval("NewsHeaderImage"))%>' Width="171px" Height="20px" /></a> </td> </tr> </table> </ItemTemplate> </asp:DataList> </marquee>
Plz do some needful
Thanks, Rakesh
|
| Author: I am not a .net expert 22 Dec 2010 | Member Level: Bronze | Rating:  Points: 3 |
Hello Rakesh, You can use onmouseover="this.stop()" onmouseout="this.start()" in marquee tag. It will work fine. Please let me know the status
|