comparison Agendas/trunk/src/Agendas.Web/Views/Patrocinador/Index.cshtml @ 297:50b462e06ecc

Armando Url de la imagen del patrocinador
author nelopauselli
date Sat, 18 Feb 2012 15:27:26 -0300
parents 1e889a2e45c5
children 48ab8788bd19
comparison
equal deleted inserted replaced
296:1edd42d24711 297:50b462e06ecc
14 </thead> 14 </thead>
15 <tbody> 15 <tbody>
16 @foreach (var item in Model.Items) 16 @foreach (var item in Model.Items)
17 { 17 {
18 <tr> 18 <tr>
19 <td><img src="/Patrocinador/GetLogo?id=@item.Id" /></td> 19 <td><img src="@Url.Action("GetLogo", new { id = item.Id })" /></td>
20 <td>@item.Nombre</td> 20 <td>@item.Nombre</td>
21 <td class="buttons"> 21 <td class="buttons">
22 @Html.ActionLink("Modificar", "Modificar", new { id = item.Id }) 22 @Html.ActionLink("Modificar", "Modificar", new { id = item.Id })
23 <span>&nbsp;</span> 23 <span>&nbsp;</span>
24 @Html.ActionLink("Eliminar", "Eliminar", new { id = item.Id }, new { @class = "ui-button-confirm" }) 24 @Html.ActionLink("Eliminar", "Eliminar", new { id = item.Id }, new { @class = "ui-button-confirm" })