views:

52

answers:

3

I have an ASP.net page with dynamic content that are inside Controls, some of them custom controls and some of them regular ASP.net controls.

Is there a way to get those controls inside a Marquee? maybe an HTML Marquee? These controls are mostly built in this sense:

sometext


sometext


sometext

etc.

Thanks!

A: 

have you tried:

<marquee> <asp:YourUserControl ... /> </marquee>
luke
+1  A: 

You should look into using JQuery. The Marquee tag is depricated and doesn't work in all browsers.

SLC
it's for an internal site, where all users work with IE6, so browsers compatibility is not an issue.
jbkkd
A: 

I ended up doing this:

<asp:Literal id="Literal1" text="<marquee>"></asp:Literal>
some controls
<asp:Literal id="Literal2" text=</marquee>"></asp:Literal>

Which is very similar to the solution Luke gave, but you can't just use as regular HTML in an asp.net page.

jbkkd
Odd, because you can do that.
SLC