123456789101112131415161718192021222324252627282930313233 |
- @using Bowin.Web.Controls.Mvc;
- @using EMIS.Web.Controls;
- @{
- ViewBag.Title = "ProveReport";
- string loginUserID = ViewBag.LoginUserID;
- var dataRangeID = ViewBag.DataRangeID;
- }
- @section scripts{
- <script src="../../Scripts/Business/StudentManage/StudentProfile/StudentProveReport.js" type="text/javascript"></script>
- <script type="text/javascript">
- var nonSelect = "@DropdownList.SELECT_ALL";
- var learning = "@((int)EMIS.ViewModel.CF_StudentProveReport.Learning)";
- var riseOnlyThis = "@((int)EMIS.ViewModel.CF_StudentProveReport.RiseOnlyThis)";
- var graduate = "@((int)EMIS.ViewModel.CF_StudentProveReport.Graduate)";
- var universityName = '@EMIS.Utility.RSL.Get("UniversityName")';
- var loginUserID = '@loginUserID';
- var dataRangeID = '@dataRangeID';
- </script>
- }
- @Html.DictionaryDropDownList(EMIS.ViewModel.DictionaryItem.CF_StudentProveReport, new DropdownListOptions
- {
- ID = "DictionaryStudentProveReport",
- Name = "DictionaryStudentProveReport",
- BindType = DropdownListBindType.PleaseSelect,
- SelectedValue = (int)(int)EMIS.ViewModel.CF_StudentProveReport.Learning,
- OnSelect = "StudentProveReport"
- })
- <div class="easyui-panel" data-options="border:false,fit:true" style="position: relative;">
- <div class="search_list">
- <iframe id="reportContent" frameborder="0" scrolling="no" style="width: 99%; height: 95%; position: absolute;
- left: 5px;"></iframe>
- </div>
- </div>
|