How can I check the xhtml file for the specified DTD?
I have a resource file using
string filePath = Assembly.GetExecutingAssembly().GetName().Name+"." + resourceFileName;
Stream fileStream = Assembly.GetExecutingAssembly().GetManifestResourceStream(filePath);
Now I need to use fileStream to compare my xhtml file with DTDs embedded in the resource file. How to do it?
+1
chh
a source
to share