24 lines
430 B
C#
24 lines
430 B
C#
|
|
using System;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
using System.Linq;
|
|||
|
|
using System.Web;
|
|||
|
|
using System.Web.Mvc;
|
|||
|
|
|
|||
|
|
namespace AUTS.Web.Controllers
|
|||
|
|
{
|
|||
|
|
public class HomeController : Controller
|
|||
|
|
{
|
|||
|
|
public ActionResult Index()
|
|||
|
|
{
|
|||
|
|
|
|||
|
|
return Redirect("/App/Login/Index");
|
|||
|
|
//return View();
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
public ActionResult Error()
|
|||
|
|
{
|
|||
|
|
return View();
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
}
|
|||
|
|
}
|