annotate Agendas/trunk/src/Agendas.Web/Views/Shared/_Messages.cshtml @ 159:f6e4af3a0b09
Cambios mínimos de diseño.
author |
juanjose.montesdeocaarbos |
date |
Fri, 05 Aug 2011 21:37:30 -0300 |
parents |
7ef7e4bb71f6 |
children |
beeb48ddb44a |
rev |
line source |
117
|
1 @if (TempData.ContainsKey("error"))
|
|
2 {
|
|
3 <div class="errorbox"><label>@TempData["error"]</label></div>
|
|
4 }
|
|
5 @if (TempData.ContainsKey("warning"))
|
|
6 {
|
|
7 <div class="warningbox"><label>@TempData["warning"]</label></div>
|
|
8 }
|
|
9 @if (TempData.ContainsKey("notification"))
|
|
10 {
|
|
11 <div class="notificationbox"><label>@TempData["notification"]</label></div>
|
|
12 } |