ApplyReport.cshtml 1.1 KB

12345678910111213141516171819202122232425
  1. @using Bowin.Web.Controls.Mvc;
  2. @using EMIS.Web.Controls;
  3. @{
  4. ViewBag.Title = "ApplyReport";
  5. string loginUserID = ViewBag.LoginUserID;
  6. var dataRangeID = ViewBag.DataRangeID;
  7. }
  8. @section scripts{
  9. <script src="../../Scripts/Business/StudentManage/StudentChange/ChangeApplyReport.js" type="text/javascript"></script>
  10. <script type="text/javascript">
  11. var nonSelect = "@DropdownList.SELECT_ALL";
  12. var universityName = '@EMIS.Utility.RSL.Get("UniversityName")';
  13. var curWwwPath = window.document.location.href;
  14. var pathName = window.document.location.pathname;
  15. var pos = curWwwPath.indexOf(pathName);
  16. var localhostPaht = curWwwPath.substring(0, pos);
  17. var loginUserID = '@loginUserID';
  18. var dataRangeID = '@dataRangeID';
  19. </script>
  20. }
  21. <div class="easyui-panel" data-options="border:false,fit:true" style="position: relative;">
  22. <div class="search_list">
  23. <iframe id="reportContent" frameborder="0" scrolling="no" style="width: 99%; height: 95%; position: absolute; left: 5px;"></iframe>
  24. </div>
  25. </div>