<%@ Page Title="" Language="VB" MasterPageFile="~/Views/Shared/Site.Master" Inherits="System.Web.Mvc.ViewPage(Of ContactManager.Contact)" %> Create <%= Html.ValidationSummary() %> <% Using Html.BeginForm()%>
Create New Contact

<%= Html.TextBox("FirstName") %> <%= Html.ValidationMessage("FirstName", "*") %>

<%= Html.TextBox("LastName") %> <%= Html.ValidationMessage("LastName", "*") %>

<%= Html.TextBox("Phone") %> <%= Html.ValidationMessage("Phone", "*") %>

<%= Html.TextBox("Email") %> <%= Html.ValidationMessage("Email", "*") %>

<% End Using %>