Free cookie consent management tool by TermsFeed Policy Generator

source: branches/WebApplication/MVC2/HLWebOKBQueryPlugin/Controllers/HomeController.cs @ 5910

Last change on this file since 5910 was 5910, checked in by cfleisch, 13 years ago

#1439 Query tool as plugin implemented, added submenu items

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