Free cookie consent management tool by TermsFeed Policy Generator

source: branches/WebApplication/MVC2/HLWebOKBAdminPlugin/Controllers/HomeController.cs @ 9931

Last change on this file since 9931 was 6317, checked in by jwolfing, 13 years ago

#1433 code formatted

File size: 451 bytes
Line 
1using System;
2using System.Collections.Generic;
3using System.Linq;
4using System.Web;
5using System.Web.Mvc;
6
7namespace 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.