protected void btnExportXML_Click(object sender, EventArgs e)
 {
     if (Page.IsValid)
     {
         try
         {
             string fileName = string.Format("categories_{0}.xml", DateTime.Now.ToString("yyyy-MM-dd-HH-mm-ss"));
             string xml      = ExportManager.ExportCategoriesToXML();
             CommonHelper.WriteResponseXML(xml, fileName);
         }
         catch (Exception exc)
         {
             ProcessException(exc);
         }
     }
 }