2

データを Web サービスに挿入しようとしています。

私のウェブサイトで送信ボタンを送信している間。エラーがあるかどうかを確認しています:

if (Convert.ToString(strXML) != "1")
{
     XmlDocument xmlDoc = new XmlDocument();
     xmlDoc.LoadXml(strXML.ToString());
     XmlNode node = xmlDoc.SelectSingleNode("Logic/Errors");
     err = node["Error"].InnerText;
}

しかし、今私はエラーが発生しています:

Object reference not set to an instance of an object.
Description: An unhandled exception occurred during the execution of the 
current web request. 
Please review the stack trace for more information about the error and where 
it originated in the code.

Exception Details: System.NullReferenceException: Object reference not set to 
an instance of an object.

誰でも私を助けることができますか???

4

1 に答える 1