@model EMIS.ViewModel.FeeManage.RefundView @using EMIS.Web.Controls; @using Bowin.Web.Controls.Mvc; @{ ViewBag.Title = "Refund"; var url = ViewBag.Url; } @section scripts{ }
@using (Html.BeginForm("Refund", "ExamineApply", new { MNU = Request["MNU"], WindowID = Request["WindowID"] }, FormMethod.Post, new { enctype = "multipart/form-data" })) {
@Html.ContextMenuBar("Refund")
@Html.Hidden("SelectIDs") @Html.HiddenFor(x => x.ExaminationRegistrationID) @Html.HiddenFor(x => x.RecordStatus) @Html.Hidden("PayStatusID", (int)EMIS.ViewModel.EX_ExaminationRegistrationStatus.Paid)
@Html.LabelFor(x => x.BankName): @Html.TextBoxFor(x => x.BankName, new TextBoxOptions { }) @Html.LabelFor(x => x.CardNo): @Html.TextBoxFor(x => x.CardNo, new TextBoxOptions { })
@Html.LabelFor(x => x.RefundReason): @Html.TextAreaFor(x => x.RefundReason, new { style = "width: 96%" })
}