mirror of
https://github.com/kataras/iris.git
synced 2025-01-23 18:51:03 +01:00
006a09f68a
Former-commit-id: 40d27dd7d02f4ead756be090364075a6570ae2cb
40 lines
953 B
C#
40 lines
953 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Diagnostics;
|
|
using System.Linq;
|
|
using System.Threading.Tasks;
|
|
using Microsoft.AspNetCore.Mvc;
|
|
using netcore_mvc_templates.Models;
|
|
|
|
namespace netcore_mvc_templates.Controllers
|
|
{
|
|
public class HomeController : Controller
|
|
{
|
|
public IActionResult Index()
|
|
{
|
|
return View();
|
|
}
|
|
|
|
public IActionResult About()
|
|
{
|
|
ViewData["Title"] = "About Page";
|
|
ViewData["Message"] = "Your application description page.";
|
|
|
|
return View();
|
|
}
|
|
|
|
public IActionResult Contact()
|
|
{
|
|
ViewData["Title"] = "Contact Page";
|
|
ViewData["Message"] = "Your contact page.";
|
|
|
|
return View();
|
|
}
|
|
|
|
public IActionResult Error()
|
|
{
|
|
return View(new ErrorViewModel { Title = "Error", Code = 500});
|
|
}
|
|
}
|
|
}
|