view Agendas/trunk/src/Agendas.Web/Views/Shared/_Messages.cshtml @ 285:c8f378272407

#123: Patrocinadores de las vans.
author juanjose.montesdeocaarbos
date Sat, 31 Dec 2011 14:45:55 -0300
parents beeb48ddb44a
children
line wrap: on
line source

@if (TempData.ContainsKey("error"))
{
	<div class="errorbox"><label>@TempData["error"]</label></div>
}
@if (TempData.ContainsKey("notification"))
{
	<div class="notificationbox"><label>@TempData["notification"]</label></div>
}
@if (TempData.ContainsKey("warning"))
{
	<div class="warningbox"><label>@TempData["warning"]</label></div>
}