0

これは、検証する XML ドキュメントをアップロードするためのコードです。このコードは、コードを含む行でいくつかの例外の問題を引き起こします xmlDoc.Load(reader);

特定の例外メッセージは、「例外はユーザー コードによって処理されませんでした」です。

   private void btnLoad_Click(object sender, System.EventArgs e)
   {
       XmlTextReader reader = new XmlTextReader(Server.MapPath("mycompany.xml"));

       reader.WhitespaceHandling = WhitespaceHandling.None;
       XmlDocument xmlDoc = new XmlDocument();
       //Load the file into the XmlDocument
       xmlDoc.Load(reader);
       //Close off the connection to the file.
       reader.Close();
       //Add and item representing the document to the listbox
       lbNodes.Items.Add("XML Document");
       //Find the root nede, and add it togather with its childeren
       XmlNode xnod = xmlDoc.DocumentElement;
       AddWithChildren(xnod,1);
   }
4

0 に答える 0