@using ZoomLa.BLL @model ZoomLa.Model.M_Exam_Sys_Questions @{ Layout = "~/Areas/User/Views/Shared/_empty.cshtml"; } @section head{ } @section content{
试题标题:
题型:
试题题干: @Html.TextAreaFor(m => m.p_Content, new { @style = "height:200px;width:95%;" }) @MvcHtmlString.Create(Call.GetUEditor("p_Content", 2))
选项信息: @Html.DropDownListFor(m => m.p_ChoseNum, MVCHelper.ToSelectList("0,1,2,3,4,5".Split(','), "0,1,2,3,4,5".Split(','), "0"), new { @class = "form-control text_x", @onchange = "AddOption($(this).val());" })
    正确答案:

    (仅用于自动改卷)

    @Html.TextBoxFor(m => m.p_Answer, new { @class = "form-control text_300" }) 如有多个答案用|号分隔,用于支持自动批阅试卷,单选:A,多选:A|B,填空:值1|值2|值3
    正确答案:

    (教师与学生可见)

    @Html.TextAreaFor(m => m.p_shuming, new { @style = "height:200px;width:95%;" }) @MvcHtmlString.Create(Call.GetUEditor("p_shuming", 2))
    返回试题
    @Html.HiddenFor(m => m.p_Difficulty) @Html.Hidden("TreeTlp_hid", Model.p_Class) @Html.Hidden("tabinput", Model.Tagkey) @Html.Hidden("IsShare", Model.IsShare == 1 ? "1" : "") @Html.HiddenFor(m => m.p_defaultScores) @Html.HiddenFor(m => m.Jiexi) @Html.HiddenFor(m => m.Version)
    } @section script{ }