<%@ Page Title="Blogs - Les dernières parutions" Language="C#" Inherits="System.Web.Mvc.ViewPage" MasterPageFile="~/Models/App.master"%> <%@ Register Assembly="Yavsc.WebControls" TagPrefix="yavsc" Namespace="Yavsc.WebControls" %> <% foreach (BlogEntry e in this.Model) { %>

<%= Html.ActionLink(e.Title,"UserPost", new { user=e.UserName, title = e.Title }) %>

(<%=Html.Encode(e.UserName)%> <%=e.Modified.ToString("yyyy/MM/dd") %>)
<% if (Membership.GetUser()!=null) if (Membership.GetUser().UserName==e.UserName) { %> <%= Html.ActionLink("Editer","Edit", new { user = e.UserName, title = e.Title }, new { @class="actionlink" }) %> <%= Html.ActionLink("Supprimer","RemovePost", new { user = e.UserName, title = e.Title }, new { @class="actionlink" } ) %> <% } %>
<% } %>
<% rp1.ResultCount = (int) ViewData["RecordCount"]; rp1.CurrentPage = (int) ViewData["PageIndex"]; %>