Ooui-tws-port/PlatformSamples/AspNetCoreMvc/Controllers/HomeController.cs

41 lines
961 B
C#
Raw Normal View History

2017-11-10 02:54:50 +00:00
using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.Linq;
using System.Threading.Tasks;
using Microsoft.AspNetCore.Mvc;
2017-11-10 03:34:37 +00:00
2017-11-10 02:54:50 +00:00
using AspNetCoreMvc.Models;
2017-11-10 03:34:37 +00:00
using Ooui;
using Ooui.AspNetCore;
2017-11-10 02:54:50 +00:00
namespace AspNetCoreMvc.Controllers
{
public class HomeController : Controller
{
2017-11-10 06:02:36 +00:00
public IActionResult Index ()
{
return View ();
}
public IActionResult About ()
2017-11-10 02:54:50 +00:00
{
2017-11-16 04:32:17 +00:00
ViewData["Message"] = "Ooui is a mini web framework to make programming interactive UIs easy.";
2017-11-10 02:54:50 +00:00
2017-11-10 06:02:36 +00:00
return View ();
2017-11-10 02:54:50 +00:00
}
2017-11-10 06:02:36 +00:00
public IActionResult Contact ()
2017-11-10 02:54:50 +00:00
{
2017-11-16 04:32:17 +00:00
ViewData["Message"] = "Find us on github.";
2017-11-10 02:54:50 +00:00
2017-11-10 06:02:36 +00:00
return View ();
2017-11-10 02:54:50 +00:00
}
2017-11-10 06:02:36 +00:00
public IActionResult Error ()
2017-11-10 02:54:50 +00:00
{
2017-11-10 06:02:36 +00:00
return View (new ErrorViewModel { RequestId = Activity.Current?.Id ?? HttpContext.TraceIdentifier });
2017-11-10 02:54:50 +00:00
}
}
}