Sign in

ECS / WCS_LiuzhouZhituo · Files

Logo

GitLab

  • Back to group
  • Project
  • Activity
  • Files
  • Commits
  • Network
  • Graphs
  • Milestones
  • Issues 0
  • Merge Requests 0
  • Labels
  • Wiki
  • WCS_LiuzhouZhituo
  • HHECS.API
  • Controllers
  • HomeController.cs
  • 添加项目文件。
    aeab7357
    liufu authored
    2018-10-17 19:43:27 +0800  
    Browse Code »
HomeController.cs 329 Bytes
Edit Raw Blame History
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.Mvc;

namespace HHECS.API.Controllers
{
    public class HomeController : Controller
    {
        public ActionResult Index()
        {
            ViewBag.Title = "Home Page";

            return View();
        }
    }
}