source:
branches/WebApplication/MVC2/HLWebOKBAdminPlugin/Controllers/HomeController.cs
@
11589
Last change on this file since 11589 was 6317, checked in by jwolfing, 13 years ago | |
---|---|
File size: 451 bytes |
Line | |
---|---|
1 | using System; |
2 | using System.Collections.Generic; |
3 | using System.Linq; |
4 | using System.Web; |
5 | using System.Web.Mvc; |
6 | |
7 | namespace HLWebOKBAdminPlugin.Controllers { |
8 | [HandleError] |
9 | public class HomeController : Controller { |
10 | // |
11 | // GET: /Home/ |
12 | |
13 | public ActionResult Index() { |
14 | ViewData["Message"] = "Welcome to ASP.NET MVC!"; |
15 | return View(); |
16 | } |
17 | |
18 | public ActionResult About() { |
19 | return View(); |
20 | } |
21 | |
22 | } |
23 | } |
Note: See TracBrowser
for help on using the repository browser.