Scrolling Label

  • Thread starter Thread starter David
  • Start date Start date
D

David

Hello.

How can I make a scrolling label?
Or may be somebody can tell me good site of Javascripts?

Thank you.
 
You dont need to use javascript. You can easily handle it by using style
attribute for label. An example is here for u:

<asp:label ID="label1" runat="server" style="OVERFLOW: auto; WIDTH: 400px;
HEIGHT: 50px" > </asp:label>
 
Back
Top