Last change
on this file since 6185 was
6050,
checked in by wtollsch, 14 years ago
|
#1433 menue entries and views for OKB Admin created / adapted, each view contains a listbox
|
File size:
514 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 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.