How to code for text moving across the screen on website...

  • Thread starter Thread starter jonny
  • Start date Start date
J

jonny

I am using Visual Web Developer with ASP and VB.NET to build website.

I would like to have Text moving across my screen that says "Example
text moving across screen for viewers to read.".


I am new to web and VB.NET programming so please help me with step by
step. (Just when I got used to VB 6.0 now I have to starting learning
VB.NET)
 
I am using Visual Web Developer with ASP and VB.NET to build website.

Correction - you are using Asp.Net - a big difference from Asp
I would like to have Text moving across my screen that says "Example
text moving across screen for viewers to read.".

I am new to web and VB.NET programming so please help me with step by
step. (Just when I got used to VB 6.0 now I have to starting learning
VB.NET)

Well get ready to learn JavaScript and CSS as well!

Visual Basic.Net is used for handling server side events (like when a
user clicks a asp:Button). For client-side functionality you have to
use a client-side script to get the desired behavior. I also mention
CSS because many implementations will probably modify the style
attributes of the element to be scrolled.

Instead of writing a solution for you here I'll send you to google:

http://www.google.com/search?q=java...s=org.mozilla:en-US:official&client=firefox-a

Thanks,

Seth Rowe
 
jonny said:
I would like to have Text moving across my screen that says "Example
text moving across screen for viewers to read.".

Much as it pains me to suggest it, have you tried looking at the Marquee
HTML element?

http://www.htmlcodetutorial.com/_MARQUEE.html

http://en.wikipedia.org/wiki/Marquee_tag

It's not an official part of the HTML standard, but I think most browsers do
support it. Personally I think it's horrible but it might do what you want
and is very easy to use.
 
Back
Top