// Method to bind the data for proper viewing
 public void BindXMLGridView()
 {
     // Double check to make sure BindXMLGridView() is in PageLoad()!
     gvApps.DataSource = myBusinessLayer.GetCustomerXMLFile();
     gvApps.DataBind();
 }
 public void BindXMLGridView()
 {
     //Uses business layer to process the file and handle any errors
     gvXML.DataSource = myBusinessLayer.GetCustomerXMLFile();
     gvXML.DataBind();
 }
 //bind xml grid view
 public void BindXMLGridView()
 {
     gvXML.DataSource = myBusinessLayer.GetCustomerXMLFile();
     gvXML.DataBind();
 }