Pokaż
Ignoruj:
Data:
2009-12-22 12:25:22 (16 years ago)
Autor:
marek
Opis:

re #215 - custom error page

Pliki:
1 zmodyfikowane

Legenda:

Bez zmian
Dodane
Usunięte
  • trunk/eCard/eCardMVC/Platnosci/Controllers/HomeController.cs

    r930 r964  
    1 using System.Web.Mvc; 
     1using System; 
     2using System.Web.Mvc; 
    23 
    34namespace Platnosci.Controllers 
     
    910        { 
    1011            return RedirectToAction("LogOn", "Account"); 
    11             //return View(); 
    1212        } 
    1313 
     
    1616            return View(); 
    1717        } 
     18 
     19        public ActionResult Error() 
     20        { 
     21            return View("Error"); 
     22        } 
    1823    } 
    1924}