<%@ Page Title="Contact" Language="C#" MasterPageFile="~/Models/App.master" Inherits="System.Web.Mvc.ViewPage" %>

Directeur : Paul Schneider
Adresse postale : 2 Boulevard Aristide Briand
Tél. : +33 (0) 9 80 90 36 42
Mobile : +33 (0) 6 51 14 15 64
SIREN : 803 851 674
SIRET : 803 851 674 00017
Activité Principalement Exercée (APE) : 5829C Édition de logiciels applicatifs

<% using (Html.BeginForm("Contact", "Home")) { %>
Message

<%= Html.Label("email",LocalizedText.email) %>: <%= Html.ValidationMessage("email") %>
<%= Html.TextBox("email") %>

<%= Html.Label("reason",LocalizedText.reason) %>: <%= Html.ValidationMessage("reason") %>
<%= Html.TextBox("reason") %>

<%= Html.Label("body",LocalizedText.body) %>: <%= Html.ValidationMessage("body") %>
<%= Html.TextArea("body",new {@rows="25"}) %>

"> <% } %>