12345678910111213141516171819202122232425262728 |
- @using Bowin.Web.Controls.Mvc;
- @using EMIS.Web.Controls;
- @{
- ViewBag.Title = "ClassStudentReport";
- var status = ViewBag.Status;
- string LoginUserID = ViewBag.UserID;
- var DataRange = ViewBag.DataRange;
- }
- @section scripts{
- <script type="text/javascript">
- var curWwwPath = window.document.location.href;
- var pathName = window.document.location.pathname;
- var pos = curWwwPath.indexOf(pathName);
- var localhostPaht = curWwwPath.substring(0, pos) + "/";
- var nonSelect = "@DropdownList.SELECT_ALL";
- var SchoolName = '@EMIS.Utility.RSL.Get("UniversityName")';
- var LoginUserID = '@LoginUserID';
- var DataRange = '@DataRange';
- </script>
- <script src="../../Scripts/Business/Studentfile/StudentProofReport.js" type="text/javascript"></script>
- }
- @Html.DictionaryDropDownList(EMIS.ViewModel.DictionaryItem.CF_StudentProof, new DropdownListOptions { BindType = DropdownListBindType.PleaseSelect, ID = "selReport", Name = "selReport", OnSelect = "Report", SelectedValue = 1 })
- <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>
|