Exemplo n.º 1
0
 public ActionResult ModelData()
 {
     var user = new User
        {
            Name = "Rob",
            Email = "*****@*****.**",
            Country = "England, UK"
        };
     return View(user);
 }
Exemplo n.º 2
0
        public ActionResult ComplexObjects()
        {
            var user = new User
               {
                   Name = "Rob",
                   Email = "*****@*****.**",
                   Country = "England, UK"
               };

            ViewData["userInfo"] = user;
            return View();
        }