<%@ Page Title="Catalog" Language="C#" Inherits="System.Web.Mvc.ViewPage" MasterPageFile="~/Models/App.master" %> <% foreach (Product p in Model.Products ) { %>

<%= Html.ActionLink( p.Name, "Product", new { id = ViewData["BrandName"], pc = Model.Reference , pref = p.Reference }, new { @class="actionlink" } ) %>

<%= p.Description %> <% if (p.Images !=null) foreach (ProductImage i in p.Images ) { %> <%=i.Alt%> <% } %>

<% } %>