Example #1
0
        public ActionResult Action(long? ID)
        {
            try
            {
                if (ID != null)
                {
                    ViewBag.obj = MVCHelper.GetUser(Convert.ToInt64(ID));
                }
                else
                {

                }

            }
            catch (Exception ex)
            {

            }


            return View();
        }