annotate Agendas/trunk/src/Agendas.Web/Views/Shared/_Messages.cshtml @ 118:b74734a1a755
Manejo de eventos por estado
author |
Nelo@Kenia.neluz.int |
date |
Wed, 22 Jun 2011 09:32:59 -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 } |