markus / MarkusLogview / MARKUS_LOGVIEW / Controllers / HomeController.cs @ 1c7f408a
이력 | 보기 | 이력해설 | 다운로드 (334 Bytes)
1 |
using System; |
---|---|
2 |
using System.Collections.Generic; |
3 |
using System.Linq; |
4 |
using System.Web; |
5 |
using System.Web.Mvc; |
6 |
|
7 |
namespace MARKUS_LOGVIEW.Controllers |
8 |
{ |
9 |
public class HomeController : Controller |
10 |
{ |
11 |
public ActionResult Index() |
12 |
{ |
13 |
ViewBag.Title = "Home Page"; |
14 |
|
15 |
return View(); |
16 |
} |
17 |
} |
18 |
} |