Files
Web_AUTSDATA_Mvc_Prod/AUTS.Web/Controllers/HomeController.cs

24 lines
430 B
C#
Raw Normal View History

2025-11-20 13:11:05 +08:00
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();
}
}
}