コード例 #1
0
        // GET: Greeting
        public ActionResult Index()
        {
            var model = new GreetingsModel();

            model.Message = ConfigurationManager.AppSettings["message"];
            return(View(model));
        }
コード例 #2
0
ファイル: HomeController.cs プロジェクト: deoseal/MVC_Study
        public ActionResult Index()
        {
            var model = new GreetingsModel
            {
                Name     = "An astardingly distrant flocus of disembowed blossom",
                Greeting = "Hello world in MVC!"
            };

            return(View(model));
        }