26 lines
		
	
	
		
			468 B
		
	
	
	
		
			C#
		
	
	
	
			
		
		
	
	
			26 lines
		
	
	
		
			468 B
		
	
	
	
		
			C#
		
	
	
	
| using System;
 | |
| using System.Collections.Generic;
 | |
| using System.Linq;
 | |
| using System.Web;
 | |
| using System.Web.Mvc;
 | |
| 
 | |
| namespace WebAPI.Controllers
 | |
| {
 | |
|     /// <summary>
 | |
|     /// 首页
 | |
|     /// </summary>
 | |
|     public class HomeController : Controller
 | |
|     {
 | |
|         /// <summary>
 | |
|         /// 
 | |
|         /// </summary>
 | |
|         /// <returns></returns>
 | |
|         public ActionResult Index()
 | |
|         {
 | |
|             ViewBag.Title = "Home Page";
 | |
| 
 | |
|             return View();
 | |
|         }
 | |
|     }
 | |
| }
 |