tags:

views:

161

answers:

1

Is anyone aware of a good managed code .NET component which can do HTML Diffs? I'd like to compare two HTML files and show the differences.

+1  A: 

Microsoft has a managed-code tool called XmlDiffPatch, which should work for HTML files as well. You can run it as a stand-alone executable, or import the diff assemblies into your project.

Steve Guidi
It would only work well for valid XHTML, I'd bet.
Noldorin
XML != XHTML...
Andy Mikula