Free cookie consent management tool by TermsFeed Policy Generator

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

Last change on this file since 6050 was 6050, checked in by wtollsch, 13 years ago

#1433 menue entries and views for OKB Admin created / adapted, each view contains a listbox

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