优化ETL过滤模块
大石头 authored at 2017-08-29 17:11:46
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();
        }
    }
}