flowing words

  • Thread starter Thread starter Vinnie
  • Start date Start date
V

Vinnie

using Flash it's easy to create a small textbox, and let the news to
flow i.e. from right to left.

I was wondering if there is something in asp.net 2.0 C#, to create
anything like that.

Vinnie
 
using Flash it's easy to create a small textbox, and let the news to
flow i.e. from right to left.

I was wondering if there is something in asp.net 2.0 C#, to create
anything like that.

Vinnie

<MARQUEE>
<asp:Label id=....>
</MARQUEE>
 
Wrong answer. The marquee tag is proprietary to IE, and is not part of any
standard. It will not work in many browsers. The alternatives are
JavaScript, Flash, etc.

--
HTH,

Kevin Spencer
Microsoft MVP

DSI PrintManager, Miradyne Component Libraries:
http://www.miradyne.net
 
re:
!>> It will not work in many browsers.
!> Such as...?

Netscape ( unless in IE mode... )
In Opera the stop/start commands don't work.

Also, search engine's robots will ignore your marqueed content.

Bottom line : the effect won't be visible in all web browsers.

There's Javascript solutions which, almost, work like the marquee tag:

http://www.dynamicdrive.com/dynamicindex2/cmarquee2.htm
....but, again Netscape and Opera have problems with it.

To me, using the marquee tag is no better than using the <blink> tag. ( Ugh! )




Juan T. Llibre, asp.net MVP
asp.net faq : http://asp.net.do/faq/
foros de asp.net, en español : http://asp.net.do/foros/
======================================
 
!>> It will not work in many browsers.
!> Such as...?

Netscape ( unless in IE mode... )
In Opera the stop/start commands don't work.

Thanks for that.
To me, using the marquee tag is no better than using the <blink> tag. (
Ugh! )

Oh indeed - I couldn't agree more...!
 
re:
!>> It will not work in many browsers.
!> Such as...?

Netscape ( unless in IE mode... )
In Opera the stop/start commands don't work.

Netscape 9 drops support for IE mode and is now Gecko only, which is
working with the <marquee> tag.
 
Back
Top