0

晚上好 StackOverFlowers,
我最近开始通过 Visual Studio 2010 使用 XML 进行编码。我遇到了一个看似简单的解决方案,但该解决方案却让我无法理解。我收到未设置对象引用的错误,但我没有看到我尚未设置的内容。(这里的错误:http: //i.imgur.com/CVaxY.png

我的代码隐藏:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Xml;

public partial class _Default : System.Web.UI.Page
  {
    int intDVDID;
    XmlDocument myXmlDocument = new XmlDocument();
    XmlNode rootNode;
    XmlNode selectedDVD;

public void Page_Load(object Src, EventArgs E)
{
    intDVDID = Convert.ToInt32(Request.QueryString["id"]);

    myXmlDocument.Load(Request.PhysicalApplicationPath + @"dvd.xml");
    rootNode = myXmlDocument.DocumentElement;
    selectedDVD = rootNode.ChildNodes[intDVDID - 1];
    if (!Page.IsPostBack)
    {
        rootNode.RemoveChild(selectedDVD);
        myXmlDocument.Save(Request.PhysicalApplicationPath + @"dvd.xml");
        lblMessage.Text = "You have successfully deleted the DVD";
    }
  }
}

只是说一句:

  int intDVDID = new intDVDID 

我知道通过阅读这篇文章,你们都会因为我缺乏经验和不了解如何解决这个问题而大发雷霆,但我感谢你们的时间和耐心。

最好的问候,劳拉:)

编辑:这是我的 XML:

<?xml version="1.0" encoding="utf-8" ?>
<!-- This XML document describes a DVD library -->
<library>
  <DVD id="1">
    <title>Breakfast at Tiffany's</title>
    <format>Movie</format>
    <genre>Classic</genre>
  </DVD>
  <DVD id="2">
    <title>Contact</title>
    <format>Movie</format>
    <genre>Science fiction</genre>
  </DVD>
  <DVD id="3">
    <title>Little Britain</title>
    <format>TV Series</format>
    <genre>Comedy</genre>
  </DVD>
</library>
4

2 回答 2

1

看起来您选择的DVD 可能为空,请进行一些空检查以进行验证。

if(selectedDVD != null)
{
}

编辑:在评论中回答您的问题。这是一些示例代码。我投入了一个 xpath,即使您的情况看起来很简单,您将来可能想使用它

string xml = "<xml><node id='1'></node><node id='2'></node></xml>";

XmlDocument xmlDoc = new XmlDocument();
xmlDoc.LoadXml(xml);           

//This is an xpath(This replaces your .DocumentElement.ChildNodes[index]
XmlNode desiredNode = xmlDoc.DocumentElement.SelectSingleNode("node[@id='1']");
if (desiredNode != null)
{
    xmlDoc.DocumentElement.RemoveChild(desiredNode);
}//if             
于 2012-04-17T04:45:08.107 回答
0

请确保您的查询字符串不为空,这可能会导致您得到空引用异常。

if(Request.QueryString["id"]!="")
{
    intDVDID = Convert.ToInt32(Request.QueryString["id"]);
}
于 2012-04-17T05:03:02.667 回答