@model EMIS.ViewModel.ChargeManage.ChargeSituation.ChargeProjectView @using EMIS.Web.Controls; @using Bowin.Web.Controls.Mvc; @{ ViewBag.Title = "Details"; } @section scripts{ }
@using (Ajax.BeginForm(new AjaxOptions { OnSuccess = "EMISFunction.FormSuccess", OnBegin = "EMISFunction.FormSubmit", OnComplete = "EMISFunction.FormComplete" })) {
@Html.HiddenFor(x => x.ChargeProjectID)
@Html.LabelFor(x => x.ChrageProjectName): @Html.TextBoxFor(x => x.ChrageProjectName, new TextBoxOptions() { IsEnabled = false })
@Html.LabelFor(x => x.Remark): @Html.TextAreaFor(x => x.Remark, new TextBoxOptions() { IsEnabled = false })
}