Mercurial > altnet-hispano
view Agendas/trunk/src/Agendas.Web/Controllers/HomeController.cs @ 19:74eb4577d447
HttpContext identity provider
Requerimiento de autenticación para registrar un nuevo evento o modificar uno existente
author | nelo@MTEySS.neluz.int |
---|---|
date | Mon, 14 Mar 2011 00:35:43 -0300 |
parents | c62b77fc33f4 |
children | 475be11edf56 |
line wrap: on
line source
using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Web.Mvc; namespace Agendas.Web.Controllers { public class HomeController : Controller { public ActionResult Index() { return View(); } public ActionResult About() { return View(); } } }