TidyCOM, DHTML, attributes incorrect parsing

Hi

I have the following 

<A class=hypelinkoff href='index.asp?ItemID=39' id=I39
onmouseout=this.className='hypelinkoff';
onmouseover=this.className='hypelinkon'; target=_Blank
>Developers </A>

pass it through the Tidy COM object with the following
settings

objTidy.Options.doctype = "strict"
objTidy.Options.DropFontTags = False
objTidy.Options.OutputXhtml = False
objTidy.Options.indent = 2
objTidy.Options.TabSize = 8
objTidy.Options.TidyMark = False ' suppress meta tag
generation
objTidy.Options.Wrap = 0 ' disable line wrapping
objTidy.Options.WrapAttributes = True
objTidy.Options.LiteralAttributes = True

and I get the following

<a class="hypelinkoff" href='index.asp?ItemID=39'
id="I39" onmouseout="this.className="
onmouseover="this.className="
target="_Blank">Developers</a>

notice how the class names have disappeared. Any help
greatly appreciated

regards
Pat

__________________________________________________
Do You Yahoo!?
Yahoo! Auctions - buy the things you want at great prices
http://auctions.yahoo.com/

Received on Tuesday, 17 April 2001 13:41:04 UTC