annotate Agendas/trunk/src/Agendas.Web/Views/Shared/_Messages.cshtml @ 156:6e554de521aa
Estética de altnet hispano
author |
Nelo@Guinea.neluz.int |
date |
Thu, 04 Aug 2011 18:44:57 -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 } |