ReturnSchoolyearSelect.cshtml 1.1 KB

12345678910111213141516171819202122232425262728
  1. @using EMIS.Web.Controls;
  2. @using Bowin.Web.Controls.Mvc;
  3. @using EMIS.ViewModel;
  4. @{
  5. ViewBag.Title = "Edit";
  6. }
  7. @section scripts{
  8. <script src="~/Scripts/Business/DifferentDynamic/ReturnSchoolyearSelect.js"></script>
  9. }
  10. <div class="easyui-panel" data-options="border:false,fit:true" style="position: relative;">
  11. <div class="p_title">
  12. <div style="margin-right: 10px; line-height: 30px; font-size: 12px;">@Html.ContextMenuBar("ReturnSchoolyearSelect")</div>
  13. </div>
  14. <div class="search_list">
  15. <form id="form1">
  16. <table cellpadding="0" cellspacing="0" id="departmenttable">
  17. <tr>
  18. <td>
  19. 复学学年学期:
  20. </td>
  21. <td>
  22. @Html.DropdownList(new DropdownListOptions { ItemSourceUrl = Url.Content("~/SchoolYear/DropDownAfterCurrent"), ID = "ddlReturnSchoolyear", Validator = new DropdownListRequiredValidator(), TextField = "Text", ValueField = "Value" })
  23. </td>
  24. </tr>
  25. </table>
  26. </form>
  27. </div>
  28. </div>