yavsc/web/Views/Home/Index.aspx
Paul Schneider c79921ea58 A credit page.
* Contact.aspx: a form background color

* Index.aspx: A link to the credits page

* HomeController.cs: A Credits page

* Credits.aspx: A page title and H1 links

* AssemblyInfo.aspx: A relevant title
2015-10-08 14:10:45 +02:00

10 lines
600 B
Text

<%@ Page Title="Home" Language="C#" Inherits="System.Web.Mvc.ViewPage" MasterPageFile="~/Models/App.master"%>
<asp:Content ContentPlaceHolderID="MainContent" ID="MainContentContent" runat="server">
<div>
<%= Html.ActionLink("Les blogs", "Index", "Blogs",null, new { @class="actionlink" }) %>
<%= Html.ActionLink("Contact", "Contact", "Home", null, new { @class="actionlink" }) %>
<%= Html.ActionLink("Credits", "Credits", "Home", null, new { @class="actionlink" }) %>
<%= Html.ActionLink("Version des librairies", "AssemblyInfo", "Home", null, new { @class="actionlink" }) %>
</div>
</asp:Content>