protected void btnUpdateXML_Click(object sender, EventArgs e)
 {
     //Updates the XML from the Cache object and binds gvXML
     gvXML.DataSource = myBusinessLayer.WriteCustomerXMLFile(Cache);
     gvXML.DataBind();
 }
Exemplo n.º 2
0
 //update XML event
 public void btnUpdateXML_Click(object sender, EventArgs e)
 {
     gvXML.DataSource = myBusinessLayer.WriteCustomerXMLFile(Cache);
     gvXML.DataBind();
 }