为魔方注册默认首页,启动魔方站点时能自动跳入后台,同时为Home预留默认过度视图页面
大石头 authored at 2017-07-22 14:45:51
533.00 B
X
using System.Web.Mvc;

namespace NewLife.Cube.Controllers
{
    /// <summary>主页面</summary>
    //[AllowAnonymous]
    public class CubeHomeController : Controller
    {
        /// <summary>主页面</summary>
        /// <returns></returns>
        public ActionResult Index()
        {
            ViewBag.Message = "主页面";

            return View();
            //return View("../Home/Index");
            //Response.Redirect("~/Admin");
            //return new EmptyResult();
        }
    }
}