tidy in asp

Hi
I wonder if you could help me. I down loaded and registerd the tidycom DLL. 
I made an ASP page to test it as follows

<%
set tidyobj=server.CreateObject("TidyCOM.TidyObject")
tidyobj.Options.Doctype="strict"
tidyobj.Options.DropFontTags=true
tidyobj.Options.OutputXhtml=true
tidyobj.Options.Indent=2
tidyobj.Options.TabSize=8
tidyobj.TidyToFile "bad.html","good.html"
Response.Redirect("good.html")
%>
I made two pages . bad.html has a few html errors. good.html is an empty
page.
The script seems to run without any errors, however nothing appears in the
good.html page.

Received on Thursday, 10 May 2001 22:20:08 UTC