コード例 #1
0
        public ActionResult DeleteConfirmed(int id)
        {
            Job_Model job_Model = db.Job_Model.Find(id);

            db.Job_Model.Remove(job_Model);
            db.SaveChanges();
            return(RedirectToAction("Index"));
        }
コード例 #2
0
 public ActionResult Edit([Bind(Include = "Id,JobTitle,JobContent,JobImage,Categories_ModelId")] Job_Model job_Model)
 {
     if (ModelState.IsValid)
     {
         db.Entry(job_Model).State = EntityState.Modified;
         db.SaveChanges();
         return(RedirectToAction("Index"));
     }
     ViewBag.Categories_ModelId = new SelectList(db.Categories_Model, "Id", "CategoryName", job_Model.Categories_ModelId);
     return(View(job_Model));
 }
コード例 #3
0
        // GET: Job_Model/Details/5
        public ActionResult Details(int?id)
        {
            if (id == null)
            {
                return(new HttpStatusCodeResult(HttpStatusCode.BadRequest));
            }
            Job_Model job_Model = db.Job_Model.Find(id);

            if (job_Model == null)
            {
                return(HttpNotFound());
            }
            return(View(job_Model));
        }
コード例 #4
0
        // GET: Job_Model/Edit/5
        public ActionResult Edit(int?id)
        {
            if (id == null)
            {
                return(new HttpStatusCodeResult(HttpStatusCode.BadRequest));
            }
            Job_Model job_Model = db.Job_Model.Find(id);

            if (job_Model == null)
            {
                return(HttpNotFound());
            }
            ViewBag.Categories_ModelId = new SelectList(db.Categories_Model, "Id", "CategoryName", job_Model.Categories_ModelId);
            return(View(job_Model));
        }
コード例 #5
0
        //1- Remove Bind (شيل البايند من البارامترت)
        //Bind(Include = "Id,JobTitle,JobContent,JobImage,Categories_ModelId")]
        //note that the instance name of httppostedfilebase is the same name as the input helper inside the Create.cshtml view
        public ActionResult Create(Job_Model job_Model, HttpPostedFileBase uploadinput)
        {
            if (ModelState.IsValid)
            {
                //add this for image upload
                //using system.io
                //this path combines the serverpath (مجلد اسمه ابلودز على السيرفر) with the filename
                //(مجلد على السيرفر دي ) means create folder named uploads on root solution file
                string path = Path.Combine(Server.MapPath("~/Uploads"), uploadinput.FileName);
                uploadinput.SaveAs(path);                  //store the file on the server
                job_Model.JobImage = uploadinput.FileName; //store the file path on database (inside the propertie)
                //now to to the view ==> HTML.BeginForm();

                db.Job_Model.Add(job_Model);
                db.SaveChanges();
                return(RedirectToAction("Index"));
            }

            ViewBag.Categories_ModelId = new SelectList(db.Categories_Model, "Id", "CategoryName", job_Model.Categories_ModelId);
            return(View(job_Model));
        }