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

Wersja 971, 479 bytes (wprowadzona przez marek, 16 years temu)

re #215

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