Esempio n. 1
0
 public static void DeleteImage(string imageUrl)
 {
     if (!string.IsNullOrEmpty(imageUrl))
     {
         try
         {
             Globals.DelImgByFilePath(HttpContext.Current.Request.MapPath(Globals.ApplicationPath + imageUrl));
         }
         catch
         {
         }
     }
 }