public ActionResult Edit(int id, FormCollection collection)
 {
     try
     {
         myHandler = new BusinessLogicHandler();
         mySpecial = new Special();
         TryUpdateModel(mySpecial);
         if (ModelState.IsValid)
         {
             myHandler.UpdateSpecial(mySpecial);
         }
         return RedirectToAction("Index");
     }
     catch
     {
         return View();
     }
 }