|
Wersja 752, 482 bytes
(wprowadzona przez marek, 17 years temu)
|
|
wiersz
|
| Rev | Line | |
|---|
| [752] | 1 | using System;
|
|---|
| 2 | using System.Collections.Generic;
|
|---|
| 3 | using System.Linq;
|
|---|
| 4 | using System.Web;
|
|---|
| 5 | using System.Web.Mvc;
|
|---|
| 6 |
|
|---|
| 7 | namespace 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.