Last change
on this file since 8596 was
5910,
checked in by cfleisch, 14 years ago
|
#1439 Query tool as plugin implemented, added submenu items
|
File size:
461 bytes
|
Rev | Line | |
---|
[5910] | 1 | using System;
|
---|
| 2 | using System.Collections.Generic;
|
---|
| 3 | using System.Linq;
|
---|
| 4 | using System.Web;
|
---|
| 5 | using System.Web.Mvc;
|
---|
| 6 |
|
---|
| 7 | namespace 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.