public ActionResult Edit(int id, Tag model)
 {
     try
     {
         TagRepository repo = new TagRepository();
         repo.UpdateTag(model);
         return RedirectToAction("Index");
     }
     catch
     {
         return View(model);
     }
 }