@model EMIS.ViewModel.EvaluationManage.StudentEvaluation.EvaluationStudentView @using EMIS.Web.Controls; @using Bowin.Web.Controls.Mvc; @{ ViewBag.Title = "EnterEdit"; } @section scripts{ }
@using (Ajax.BeginForm(new AjaxOptions { OnSuccess = "EMISFunction.FormSuccess", OnBegin = "EMISFunction.FormSubmit", OnComplete = "EMISFunction.FormComplete" })) { @Html.HiddenFor(x => x.EvaluationStudentID) @Html.HiddenFor(x => x.UserID) @Html.HiddenFor(x => x.EvaluationStudentSettingID) @Html.HiddenFor(x => x.SchoolyearID) @Html.HiddenFor(x => x.SchoolyearValue) @Html.HiddenFor(x => x.CoursematerialID) @Html.HiddenFor(x => x.DepartmentID) @Html.HiddenFor(x => x.EvaluationTableID) @Html.HiddenFor(x => x.EvaluationTableWeight) @Html.HiddenFor(x => x.Numbered) @Html.Hidden("ProjectWeightSum") @Html.Hidden("EvaluationProjectID") @Html.Hidden("EvaluationScore") @Html.HiddenFor(x => x.JsonDataStr)
@if (Request["type"] != "detail") { @Html.ContextMenuBar("Edit") }

说明

@ViewBag.EvaluationNeedContent

@Html.DisplayTextFor(x => x.EvaluationTableName)

准确的评价是你成熟的表现
学年学期:@Html.DisplayTextFor(x => x.SchoolyearCode) 授课班级:@Html.DisplayTextFor(x => x.MissionClassName)
任课教师:@Html.DisplayTextFor(x => x.StaffName) 任课方式:@Html.DisplayTextFor(x => x.TeachingMethodName) 授课方式:@Html.DisplayTextFor(x => x.TeachingModeName)
课程名称:@Html.DisplayTextFor(x => x.CourseName) 课程类型:@Html.DisplayTextFor(x => x.CourseTypeName)
简要评语或建议: @Html.TextAreaFor(x => x.Advice, new Dictionary { { "style", "width: 96%;min-height: 60px;" } })
可评次数为:@Html.DisplayTextFor(x => x.Number) 次,您对此已评过:@Html.DisplayTextFor(x => x.Numbered) 次, 您的本次评分为:0 @Html.HiddenFor(x => x.TotalScore)
}