Beispiel #1
0
        // GET: /<controller>/
        public IActionResult Index()
        {
            ViewData["Message"] = "Here is a person";
            var person = new Person() {
                FirstName = "Junaid",
                LastName="Muringattu",
                Birthdate = new DateTime (1988,01,03)

            };
            return View(person);
        }
Beispiel #2
0
 public IActionResult Index(Person person)
 {
     return View(person);
 }