Free cookie consent management tool by TermsFeed Policy Generator

source: branches/WebApplication/MVC2/HeuristicLabWeb.PluginHost/HLWebPluginHost/Controllers/HomeController.cs @ 4950

Last change on this file since 4950 was 4604, checked in by dkahn, 14 years ago

#1198 Imported new Plugin Host solution for the new MVC2 based web application

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