Re: How to underline a label in a template column?

Tech-Archive recommends: Fix windows errors by optimizing your registry



Java-less:

Try using an asp hyperlink instead. You can then use a CSS class (for
example: "MyClass") to make it behave like you want...

a.MyClass
{
text-decoration:none;
}

a.MyClass:hover
{
text-decoration:underline;
}

JP>

.



Relevant Pages

  • Re: overloading *something
    ... >>> How does one make an arbitrary class ) behave ... >>> I've looked at getitem, getslice, and iter. ... >> def totuple: ... >> myargs = myclass() ...
    (comp.lang.python)
  • Re: overloading *something
    ... > How does one make an arbitrary class ) behave like ... > myobj = myclass() ... def totuple: ...
    (comp.lang.python)