文字列を XMLDocument に読み込む関数があります。
次に、そのドキュメントの XML を画面に出力したいと考えています。
Dim L As String = P.ToString()
Dim xmlDoc As XmlDocument = New XmlDocument()
xmlDoc.LoadXml(L)
Context.Response.Write(xmlDoc)
上記は機能しません。私も使用してみました
Return(xmlDoc)
成功しませんでした。この機能を実行するにはどうすればよいですか? XMLDocument を使用すべきではありませんか?