<%@ Page Title="" Language="C#" Inherits="System.Web.Mvc.ViewPage" MasterPageFile="~/Views/Shared/Site.Master" %> <%@ Import Namespace="Portoa.Web.Util" %> Contact

Contact

<%= Html.ValidationMessage("client") %>

<% using (Html.BeginForm("Contact", "Home")) { %>
<%= Html.HiddenFor(model => model.HashedCaptchaAnswer) %>

<%= Html.LabelFor(model => model.Name) %>
<%= Html.TextBoxFor(model => model.Name) %>

<%= Html.LabelFor(model => model.Email) %>
<%= Html.TextBoxFor(model => model.Email) %>

<%= Html.LabelFor(model => model.Message) %>
<%= Html.TextAreaFor(model => model.Message) %>

Are you human? [click for correct answer]
<%= Html.TextBoxFor(model => model.CaptchaAnswer) %>

<%= Html.Submit("Send!")%>
<% } %>