public ActionResult Subscribe(Subscriber s) { try { if (ModelState.IsValid) { db.Entry(s); } } catch (Exception) { throw; } return(View()); }