view Agendas/trunk/src/Agendas.Web/Views/Shared/_Messages.cshtml @ 277:7439d7a5f8d0

Warning HTML: Cambiado ALT por TITLE.
author juanjose.montesdeocaarbos
date Tue, 20 Dec 2011 08:28:33 -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>
}