@model EMIS.ViewModel.ChargeManage.ChargeSituation.ChargeProjectView @using EMIS.Web.Controls; @using Bowin.Web.Controls.Mvc; @{ ViewBag.Title = "Edit"; } @section scripts{ }
@using (Ajax.BeginForm(new AjaxOptions { OnSuccess = "EMISFunction.FormSuccess", OnBegin = "EMISFunction.FormSubmit", OnComplete = "EMISFunction.FormComplete" })) {
@Html.ContextMenuBar("Edit")
@Html.HiddenFor(x => x.ChargeProjectID)
@Html.LabelFor(x => x.ChrageProjectName): @Html.TextBoxFor(x => x.ChrageProjectName, new Dictionary { { "style", "width:150px;" } })
@Html.LabelFor(x => x.Remark): @Html.TextAreaFor(x => x.Remark, new Dictionary { { "style", "width:280px;" } })
}