Beispiel #1
0
        // GET: GroupController/join
        public ActionResult Join(int id)
        {
            try
            {
                if (id == 0)
                {
                    return(NotFound());
                }
                var group = GroupBL.GetGroup(id);

                return(View(group));
            }
            catch
            {
                return(Redirect("~/"));
            }
        }