0

以下代码反序列化 Config.xml 并将对象值加载到网格中。问题是当我选择一行时它会触发GridCustomers_RowSelected但配置对象为空。我知道这是因为每次我选择一行时,它都会回发并忘记配置对象中的值。

这个问题的一种解决方案可能是将配置对象存储在会话或视图状态中。或者我反序列化IsPostBack块外的对象。我想知道是否有其他更好的解决方案来保留配置对象中的值。

private Config config = null;

protected void Page_Load(object sender, EventArgs e)
{
   if (!Page.IsPostBack)
   {
       config = new Config();
       string file = @"C:\Config.xml";
       XmlData xmlData = new XmlData(file);
       config = xmlData.Deserialize();

       StoreCustomers.DataSource = config.Customers;
       StoreCustomers.DataBind();
    }
}

protected void GridCustomers_RowSelected(object sender, DirectEventArgs e) 
{ 
    string customerID = e.ExtraParams["ID"].ToString(); 
    string customerName = e.ExtraParams["Name"].ToString();

    Customer customer = new Customer();
    customer = config.Customers.Where( a=> a.ID == customerID).SingleOrDefault();

    StoreCompanies.DataSource = customer.Companies;
    StoreCompanies.DataBind();
}
4

1 回答 1

0

或者我反序列化 IsPostBack 之外的对象

这样做,反序列化并在 IsPostBack 之外创建它

protected void Page_Load(object sender, EventArgs e)
{
   config = new Config();
   string file = @"C:\Config.xml";
   XmlData xmlData = new XmlData(file);
   config = xmlData.Deserialize();

  if (!Page.IsPostBack)
   { 
       StoreCustomers.DataSource = config.Customers;
       StoreCustomers.DataBind();
    }
}
于 2013-03-06T10:02:25.780 回答