Files
MoonPro.net/MP-MAG/Controllers/HomeController.cs
T
2020-12-31 10:35:24 +01:00

30 lines
535 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.Mvc;
namespace MP_MAG.Controllers
{
public class HomeController : Controller
{
#region Public Methods
// GET: Home
public RedirectResult Index()
{
return Redirect("SMART/Default");
}
#endregion Public Methods
#if false
public ActionResult Index()
{
ViewBag.Title = "Home Page";
return View();
}
#endif
}
}