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