12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- @using Bowin.Web.Controls.Mvc;
- @using EMIS.Web.Controls;
- @{
- ViewBag.Title = "Statistic1";
- }
- @section scripts{
- <script src="~/Scripts/Business/Studentfile/Statistic/Statistic1.js"
- type="text/javascript"></script>
- <script type="text/javascript">
- var nonSelect = "@DropdownList.SELECT_ALL";
- </script>
- }
- <div class="easyui-panel" data-options="border:false,fit:true" style="position: relative;">
- @Html.Position()
- <div class="search_keyword">
- <div class="search_input">
- <ul>
- <li class="sn" style="padding-left: 5px;">统计类型:</li>
- <li class="sv">
- @Html.DropdownList(new DropdownListOptions
- {
- BindType = DropdownListBindType.None,
- ItemList = new List<DropdownListItem> {
- new DropdownListItem { Text = "在校生统计报表", Value = 1 },
- new DropdownListItem { Text = "新生统计报表", Value = 2 },
- new DropdownListItem { Text = "拟毕业生统计报表", Value = 3 }
- },
- //SelectedValue = 1,
- ID = "ddlReportType",
- Name = "ddlReportType",
- OnSelect = "reload",
- OnLoadSuccess = "reload"
- })
- </li>
- </ul>
- </div>
- </div>
- <div class="search_list">
- <iframe id="reportContent" frameborder="0" scrolling="no" style="width: 99%; height: 85%; position: absolute;
- left: 5px;"></iframe>
- </div>
- </div>
|