初始化项目
This commit is contained in:
24
AUTS.Web/Controllers/HomeController.cs
Normal file
24
AUTS.Web/Controllers/HomeController.cs
Normal file
@@ -0,0 +1,24 @@
|
||||
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();
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user