source:
branches/WebApplication/MVC2/HeuristicLabWeb.PluginHost/HLWebPluginHost/Controllers/HomeController.cs
@
5072
Last change on this file since 5072 was 5072, checked in by dkahn, 14 years ago | |
---|---|
File size: 421 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 HLWebPluginHost.Controllers { |
8 | [HandleError] |
9 | public class HomeController : Controller { |
10 | public ActionResult Index() { |
11 | ViewData["Message"] = "Welcome to HeuristicLab Web"; |
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.