root/trunk/Wierszowki/Wierszowki.Web/Controllers/HomeController.cs @ 756

Wersja 752, 482 bytes (wprowadzona przez marek, 17 years temu)

wiersz

Line 
1using System;
2using System.Collections.Generic;
3using System.Linq;
4using System.Web;
5using System.Web.Mvc;
6
7namespace Wyceny.Controllers
8{
9    [HandleError]
10    public class HomeController : Controller
11    {
12        public ActionResult Index()
13        {
14            ViewData["Message"] = "Witaj w aplikacji \"Wierszówki\"";
15
16            return View();
17        }
18
19        public ActionResult About()
20        {
21            return View();
22        }
23    }
24}
Notatka: Zobacz TracBrowser aby uzyskać więcej informacji.