コード例 #1
0
        public ActionResult tellmore()
        {
            TellMore f = new TellMore();

            f.Get();

            return(View("tellmore", f));
        }
コード例 #2
0
        public ActionResult tellmore(TellMore f)
        {
            try
            {
                f.Set();
            }
            catch (RuleException e)
            {
                f.Errors.CopyToModelState(ModelState);
            }

            return(View("tellmore", f));
        }