我用它来通过 XML 加载 HTML 页面
Dim xmlDoc As New XmlDocument()
xmlDoc.Load(Server.MapPath("index.htm"))
或者
Dim xmldoc As XDocument
xmldoc = XDocument.Load(Server.MapPath("index.htm"))
但我遇到了一些错误,例如:
Expecting an internal subset or the end of the DOCTYPE declaration. Line 2, position 14
;'>' is an unexpected token. The expected token is '"' or '''. Line 1, position 62
;Expecting an internal subset or the end of the DOCTYPE declaration. Line 5, position 20
.
当我解决一个错误时,所有这些错误都出现在我身上,另一个错误出现了。
我在问,我是使用完美的方式来加载这个文件还是有另一种方式?