Last change
on this file since 12726 was
5072,
checked in by dkahn, 14 years ago
|
#1198 Created design and modified views to create submenus
|
File size:
421 bytes
|
Rev | Line | |
---|
[4604] | 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() {
|
---|
[5072] | 11 | ViewData["Message"] = "Welcome to HeuristicLab Web";
|
---|
[4604] | 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.