Exemple #1
0
        public ActionResult Insert_Indexphotos(HttpPostedFileBase Index_photo)
        {
            if (Index_photo != null)
            {
                string strPath = Request.PhysicalApplicationPath + @"Images\" + Index_photo.FileName;
                Index_photo.SaveAs(strPath);
                Home_maintenanceVM home_MaintenanceVM = new Home_maintenanceVM();
                home_MaintenanceVM.Insert_indexphoto(Index_photo.FileName);
            }

            return(RedirectToAction("Home_maintenance"));
        }