view Agendas/trunk/src/Agendas.Web/Views/Shared/DefaultViewer.cshtml @ 277:7439d7a5f8d0

Warning HTML: Cambiado ALT por TITLE.
author juanjose.montesdeocaarbos
date Tue, 20 Dec 2011 08:28:33 -0300
parents 730b80afa70d
children
line wrap: on
line source

<h2>@Html.GetTitleForModel()</h2>
<p>
    @Html.GetDescriptionForModel()
</p>

@using (Html.BeginForm())
{
    <div>
        <fieldset>
            <legend>@Html.GetLegendForModel()</legend>
			<div id="content">
				@Html.DisplayForModel()
			</div>
<!--
            <div class="buttons">
                @Html.ActionLink(@LayoutResources.ReturnButton, "Index")
            </div>
-->
        </fieldset>
    </div>
}