Пример #1
0
        public ActionResult Lab3(LabModels model)
        {
            if(string.IsNullOrEmpty(model.UserID) && string.IsNullOrEmpty(model.UserName))
            {
                return View();
            }
            else
            {
                return View(model);
            }

            //return PartialView("_ModulusSumPartial", model);
        }