Free cookie consent management tool by TermsFeed Policy Generator

source: branches/WebApplication/MVC2/plugins/HLWebHelloWorldPlugin/Controllers/HomeController.cs @ 4605

Last change on this file since 4605 was 4605, checked in by dkahn, 14 years ago

#1198 Added Hello World demo plugin

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