StudentProofReport.cshtml 1.3 KB

12345678910111213141516171819202122232425262728
  1. @using Bowin.Web.Controls.Mvc;
  2. @using EMIS.Web.Controls;
  3. @{
  4. ViewBag.Title = "ClassStudentReport";
  5. var status = ViewBag.Status;
  6. string LoginUserID = ViewBag.UserID;
  7. var DataRange = ViewBag.DataRange;
  8. }
  9. @section scripts{
  10. <script type="text/javascript">
  11. var curWwwPath = window.document.location.href;
  12. var pathName = window.document.location.pathname;
  13. var pos = curWwwPath.indexOf(pathName);
  14. var localhostPaht = curWwwPath.substring(0, pos) + "/";
  15. var nonSelect = "@DropdownList.SELECT_ALL";
  16. var SchoolName = '@EMIS.Utility.RSL.Get("UniversityName")';
  17. var LoginUserID = '@LoginUserID';
  18. var DataRange = '@DataRange';
  19. </script>
  20. <script src="../../Scripts/Business/Studentfile/StudentProofReport.js" type="text/javascript"></script>
  21. }
  22. @Html.DictionaryDropDownList(EMIS.ViewModel.DictionaryItem.CF_StudentProof, new DropdownListOptions { BindType = DropdownListBindType.PleaseSelect, ID = "selReport", Name = "selReport", OnSelect = "Report", SelectedValue = 1 })
  23. <div class="easyui-panel" data-options="border:false,fit:true" style="position: relative;">
  24. <div class="search_list">
  25. <iframe id="reportContent" frameborder="0" scrolling="no" style="width: 99%; height: 95%; position: absolute;
  26. left: 5px;"></iframe>
  27. </div>
  28. </div>