12345678910111213141516171819202122232425262728 |
- @using EMIS.Web.Controls;
- @using Bowin.Web.Controls.Mvc;
- @using EMIS.ViewModel;
- @{
- ViewBag.Title = "Edit";
- }
- @section scripts{
- <script src="~/Scripts/Business/DifferentDynamic/ReturnSchoolyearSelect.js"></script>
- }
- <div class="easyui-panel" data-options="border:false,fit:true" style="position: relative;">
- <div class="p_title">
- <div style="margin-right: 10px; line-height: 30px; font-size: 12px;">@Html.ContextMenuBar("ReturnSchoolyearSelect")</div>
- </div>
- <div class="search_list">
- <form id="form1">
- <table cellpadding="0" cellspacing="0" id="departmenttable">
- <tr>
- <td>
- 复学学年学期:
- </td>
- <td>
- @Html.DropdownList(new DropdownListOptions { ItemSourceUrl = Url.Content("~/SchoolYear/DropDownAfterCurrent"), ID = "ddlReturnSchoolyear", Validator = new DropdownListRequiredValidator(), TextField = "Text", ValueField = "Value" })
- </td>
- </tr>
- </table>
- </form>
- </div>
- </div>
|