public ActionResult Action(long? ID) { try { if (ID != null) { ViewBag.obj = MVCHelper.GetUser(Convert.ToInt64(ID)); } else { } } catch (Exception ex) { } return View(); }