public ActionResult AjaxDelAlbumDetail(int TargetId, string Type, int AlbumId)
 {
     Maticsoft.BLL.SNS.UserAlbumDetail detail = new Maticsoft.BLL.SNS.UserAlbumDetail();
     if (detail.DeleteEx(AlbumId, TargetId, (Type == "Product") ? 1 : 0))
     {
         return base.Content("True");
     }
     return base.Content("False");
 }