<%@ Page Language="C#" MasterPageFile="~/Models/App.master" Inherits="System.Web.Mvc.ViewPage" %> <% using (Html.BeginForm()) { %> <%= Html.LabelFor(model => model.Title) %>: <%=Model.Title%>
<%= Html.LabelFor(model => model.Description) %>: <%=Model.Description%>
<%= Html.LabelFor(model => model.Location) %>: <%=Model.Location%>
<%= Html.LabelFor(model => model.StartDate) %>: <%=Model.StartDate%>
<%= Html.LabelFor(model => model.EndDate) %>: <%=Model.EndDate%>
<%= Html.LabelFor(model => model.Circles) %>: <%=Model.Circles%>
<%= Html.LabelFor(model => model.ImgLocator) %>: <%=Model.ImgLocator%>
<%= Html.LabelFor(model => model.EventWebPage) %>: <%=Model.EventWebPage%>
<%= Html.LabelFor(model => model.ProviderName) %>: <%=Model.ProviderName%>
<%= Html.LabelFor(model => model.Comment) %>: <%=Model.Comment%>
<% } %>