Here is a bug I found in trying to use DW Commands > "Cleanup FrontPage HTML
Sitewide" (after I installed this extension). I had ASP pages in the site
which insert other ASP pages via Server.Execute. In the process extraneous and
corrupting HTML code was added permanently to the ASP files to be "executed":

My main file sitemap.asp contains this line of code in ASP:

Server.Execute ("sitemap_InclByName.asp")

The file sitemap_InclByName.asp has only lines of HTML giving table rows,
repeating this pattern:

<tr>
<td class="SMColSmall"><a href="imageindex.asp">myindex.asp</a> </td>
<td class="SMCol2"><a href="imageindex.asp">Sample Index file</a> </td>
</tr>

The entire page of code does not include a BODY or TABLE tag because the ASP
file it is inserted into already has an enclosing BODY and TABLE tag. This is
a standard ASP technique. However, the DW extension perceives the file
sitemap_InclByName.asp as invalid HTML beause there is no BODY tag, and inserts
one at the beginning and a closing tag at the end. This invalidates the HTML
of the main file sitemap.asp.

It is possible that changing the executed file to pure ASP with Response.Write
statements rather than unadorned HTML may fix this problem, but I have not yet
tried it and would prefer to keep the same files, thus will probably stop using
the Extension unless it is changed.

Thank you,

MCM