root/trunk/eCard/eCardMVC/Platnosci/Controllers/HomeController.cs @ 866

Wersja 866, 494 bytes (wprowadzona przez alina, 16 years temu)

re #215

Line 
1using System;
2using System.Collections.Generic;
3using System.Linq;
4using System.Web;
5using System.Web.Mvc;
6
7namespace Platnosci.Controllers
8{
9    [HandleError]
10    public class HomeController : Controller
11    {
12        public ActionResult Index(string id, string flaga)
13        {
14            return RedirectToAction("LogOn", "Account");
15            //return View();
16        }
17
18        public ActionResult About()
19        {
20            return View();
21        }
22    }
23}
Notatka: Zobacz TracBrowser aby uzyskać więcej informacji.