@model calendar
@{
ViewBag.Title = "日历 | 编辑";
Layout = "~/Views/Shared/_InfoLayout.cshtml";
}
@section JS
{
}
@using (Html.BeginForm("calendarEdit", "calendar", FormMethod.Post, new { id = "calendarEditForm" }))
{
@Html.HiddenFor(model => model.EncryptId)
@Html.MyTextFor(model => model.Country)
@Html.MyTextFor(model => model.Year)
@Html.MyDropdownFor1(model => model.ValidState, ConsGlobal.ValidStates(), appendBlank: false)
@MyControls.Btn("保存", "savecalendar()")
@MyControls.Btn("关闭", "layer.closeMe()")
}