public string[] GetBackgroundList()
         {
             SkinBackgrounds background_obj = new SkinBackgrounds();    
             string SkinType="0";
             int SkinPackageId=2;
             int SkinBackground_Discontinued =1;
             int Qty=6;

             DataTable dt = background_obj.GetListBySkinTypeSkinPackageIdDiscontinuedWithQty(SkinType, SkinPackageId, SkinBackground_Discontinued, Qty);

             System.Collections.Generic.List<string> list = new System.Collections.Generic.List<string>();

             foreach (DataRow row in dt.Rows)
             {

                 list.Add(row["SkinBackground_FileName"].ToString());
             }

             return list.ToArray();

             //string[] strArray = new string[] { "s5_background1.jpg", "s5_background2.jpg", "s5_background3.jpg" };
             //return strArray;
         }