Free cookie consent management tool by TermsFeed Policy Generator

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

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

#1433 code formatted

File size: 451 bytes
RevLine 
[6050]1using System;
2using System.Collections.Generic;
3using System.Linq;
4using System.Web;
5using System.Web.Mvc;
6
[6317]7namespace HLWebOKBAdminPlugin.Controllers {
8  [HandleError]
9  public class HomeController : Controller {
10    //
11    // GET: /Home/
[6050]12
[6317]13    public ActionResult Index() {
14      ViewData["Message"] = "Welcome to ASP.NET MVC!";
15      return View();
16    }
[6050]17
[6317]18    public ActionResult About() {
19      return View();
20    }
[6050]21
[6317]22  }
[6050]23}
Note: See TracBrowser for help on using the repository browser.