flashing text in ASP.NET

  • Thread starter Thread starter DzemoT.
  • Start date Start date
D

DzemoT.

how to make flashing label (or other text control) depending of label's text
example:
if label.text="Hello" then
'flash
else
'dont flash
end if
tnx
 
Hi, DzemoT.,

You should make the "flashing" on the client-side. There is nothing in the
..NET Framework that will help you. Try looking for some examples in
javascript/vbscript.

Greetings
Martin
 
You will have to do this client side, most likely writing out a literal that
has JavaScript/DHTML to flash.

Or, place an anim GIF that flashes Hello or another message. That would be
easier for limited numbers of messages. For a greater number, you can use
CGI+ to write the message as a graphic, but I am not sure I would invest
that much time.

--
Gregory A. Beamer
MVP; MCP: +I, SE, SD, DBA

**********************************************************************
Think Outside the Box!
**********************************************************************
 
Back
Top