ProveReport.cshtml 1.5 KB

123456789101112131415161718192021222324252627282930313233
  1. @using Bowin.Web.Controls.Mvc;
  2. @using EMIS.Web.Controls;
  3. @{
  4. ViewBag.Title = "ProveReport";
  5. string loginUserID = ViewBag.LoginUserID;
  6. var dataRangeID = ViewBag.DataRangeID;
  7. }
  8. @section scripts{
  9. <script src="../../Scripts/Business/StudentManage/StudentProfile/StudentProveReport.js" type="text/javascript"></script>
  10. <script type="text/javascript">
  11. var nonSelect = "@DropdownList.SELECT_ALL";
  12. var learning = "@((int)EMIS.ViewModel.CF_StudentProveReport.Learning)";
  13. var riseOnlyThis = "@((int)EMIS.ViewModel.CF_StudentProveReport.RiseOnlyThis)";
  14. var graduate = "@((int)EMIS.ViewModel.CF_StudentProveReport.Graduate)";
  15. var universityName = '@EMIS.Utility.RSL.Get("UniversityName")';
  16. var loginUserID = '@loginUserID';
  17. var dataRangeID = '@dataRangeID';
  18. </script>
  19. }
  20. @Html.DictionaryDropDownList(EMIS.ViewModel.DictionaryItem.CF_StudentProveReport, new DropdownListOptions
  21. {
  22. ID = "DictionaryStudentProveReport",
  23. Name = "DictionaryStudentProveReport",
  24. BindType = DropdownListBindType.PleaseSelect,
  25. SelectedValue = (int)(int)EMIS.ViewModel.CF_StudentProveReport.Learning,
  26. OnSelect = "StudentProveReport"
  27. })
  28. <div class="easyui-panel" data-options="border:false,fit:true" style="position: relative;">
  29. <div class="search_list">
  30. <iframe id="reportContent" frameborder="0" scrolling="no" style="width: 99%; height: 95%; position: absolute;
  31. left: 5px;"></iframe>
  32. </div>
  33. </div>