AppraiseReport.cshtml 1011 B

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