Edit D:\AVA\AVAStandard\AVA.ResourcesPlatform.WebUI\Themes\NewtonTheme\Online.aspx
??<%@ Page Language="C#" Inherits="AVA.ResourcesPlatform.WebUI.Online" %> <!DOCTYPE html> <html> <head> <title><%= Define.Get("Client_??????") %> - <%= this.Title %></title> <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" /> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> <%= Import.CSS("js", "/JQueryUI/css/redmond/jquery-ui-1.8.9.custom.css")%> <%= Import.ScriptTheme("js/jquery.1.9.js")%> <%= Import.Script("/URL/jquery.url.js")%> <%= Import.Script("/JsonCookie/json2.js")%> <%= Import.Script("/JsonCookie/jquery.cookie.js")%> <%= Import.Script("/JsonCookie/jquery.jsoncookie.js")%> <%= Import.ScriptTheme("js/jquery-ui.min.js")%> <%= Import.Script("js", "/YK_Validate/YK_Validate.js")%> <%= Import.Script("js", "/YK_Validate/YK_ValidateRegex.js")%> <%= Import.CSS("js", "/YK_Validate/validator.css")%> <%= Import.Script("/global.aspx")%> <%= Import.Script("js", "/global.js")%> <%= new HeadInstance(this) { CacheEnable = 60*60, }.ToHtml() %> </head> <body> <%= new HeaderInstance(this) { CacheEnable = 60*60, HeaderItem = HeaderItem.OnlineShow, ReplaceItems = new ReplaceItems().Add("HeaderSearch", ReplaceTypeEnum.Html, new SearchLiveMaxInstance(this) { CacheEnable = 60*60, }.ToRenderHtml()) }.ToHtml()%> <div class="content main-content" role="main"> <div class="container"> <div class="row"> <div class="span12"> <%= new NavInstance(this) { CacheEnable = 60*60, }.Add(Define.Get("Client_??????"),null).ToHtml()%> </div> <!-- /span16 --> </div> <div class="row"> <div class="span12"> <div class="metro-list"> <ul class="thumbnails videos_with_mask"> <% foreach (var item in ListRecordEquipment.ToList()) { %> <li class=""> <div class="thumbnail" style="position: relative;"> <a title="<%=item.Name %>" href="<%=WebUrl.OnlineShow(item.Guid) %>"> <img id="imgPlay<%=item.Guid %>" src="<%=CreateInstance.RecordEquipmentDao.LiveCover(item) %>" onerror="this.src='<%=SettingGroup.DefaultOnline %>';this.onerror=null" style="display: none" /></a> <%-- <%= new HtmlAnchor(new HtmlImg(CreateInstance.RecordEquipmentDao.LiveCover(item)) { ID="imgPlay"+item.Guid, Title = item.Name,OnErrorImg=SettingGroup.DefaultOnline}.Style(new {display="none"})) { Title = item.Name, Href = WebUrl.OnlineShow(item.Guid) }%> --%> <a title="<%=item.Name %>" href="<%=WebUrl.OnlineShow(item.Guid) %>"> <img id="imgPlayCheck<%=item.Guid %>" src="<%= SettingGroup.DefaultCheckOnline %>" /></a> <a title="<%=item.Name %>" href="<%=WebUrl.OnlineShow(item.Guid) %>"> <img id="imgPlayNone<%=item.Guid %>" src="<%=string.IsNullOrEmpty(item.OffLiveCover) ? SettingGroup.DefaultUnOnline : SettingGroup.RecordEquipmentUploadPath+item.OffLiveCover %>" style="display: none" /></a> <%-- <%= new HtmlAnchor(new HtmlImg(string.IsNullOrEmpty(item.OffLiveCover) ? SettingGroup.DefaultUnOnline : SettingGroup.RecordEquipmentUploadPath+item.OffLiveCover){ ID="imgPlayNone"+item.Guid, Title= item.Name, OnErrorImg=SettingGroup.DefaultUnOnline}) { Title = item.Name, Href = WebUrl.OnlineShow(item.Guid) }%> --%> <a class="video_infos_mask" href="<%=WebUrl.OnlineShow(item.Guid) %>" target="_blank" style="width: 382px; height: 250px; margin: 4px;"> <div class="background_mask"></div> <div class="video_info"> </div> </a> <br /> <%= new HtmlAnchor(item.Name) { Title = item.Name, Target = "_blank", Href = WebUrl.OnlineShow(item.Guid), TextLength=20, Suffix="..." }%> (<span id="span<%= item.Guid %>">?????...</span>) <span id="spnSpeaker<%= item.Guid %>"></span> <script type="text/javascript"> Global.UserControl("<%= ControlPath("/OnlineShow/OnlineShowControlSpeaker")%>", "Guid=<%= item.Guid %>&NotCheckAS=false", null, function (result) { var data = eval('(' + result.Html + ')'); $("#span<%= item.Guid %>").html(data.Status); if ($.trim(data.Status) == "<%= Define.Get("RecordEquipment_????????") %>" || $.trim(data.Status) == "<%= Define.Get("RecordEquipment_?????") %>") { $("#imgPlayNone<%= item.Guid %>").css("display", "none"); $("#imgPlayCheck<%= item.Guid %>").css("display", "none"); $("#imgPlay<%= item.Guid %>").css("display", ""); //if (data.Title != null // && data.Title != "null") { // var title = ""; // if (data.Title.length > 18) { // title = data.Title.substring(0, 18); // } else { // title = data.Title; // } // $("#spnSpeaker<%= item.Guid %>").html(data.Teacher + " : " + title+"..."); //} } else { $("#imgPlay<%= item.Guid %>").css("display", "none"); $("#imgPlayCheck<%= item.Guid %>").css("display", "none"); $("#imgPlayNone<%= item.Guid %>").css("display", ""); $("#spnSpeaker<%= item.Guid %>").css("display", ""); } }, true, null, function (XMLHttpRequest, textStatus, errorThrown) { //????? $("#imgPlay<%= item.Guid %>").css("display", "none"); $("#imgPlayCheck<%= item.Guid %>").css("display", "none"); $("#imgPlayNone<%= item.Guid %>").css("display", ""); $("#spnSpeaker<%= item.Guid %>").css("display", ""); $("#span<%= item.Guid %>").html("??????"); }); </script> </div> </li> <% } %> <!-- /row --> </ul> </div> </div> </div> <% if (this.Query.RecordCount > this.Query.PageSize) { %> <div class="row"> <div class="span12"> <div class="search-footer" style="overflow: hidden;"> <div class="pull-right"> <%= new PagerAjaxInstance(this) { RecordCount = this.Query.RecordCount, PageSize = this.Query.PageSize, PageRecordSize = 16, PageIndex = this.Query.PageIndex, PageJsFn = WebUrl.Online(int.MaxValue) }.ToHtml()%> </div> </div> </div> </div> <% } %> </div> </div> <%= new FooterInstance(this) { CacheEnable = 60*60, }.ToHtml() %> </body> </html> <script type="text/javascript"> //??????????? setTimeout(function () { window.location.reload(); // window.location.href = window.location.href; }, 20 * 1000); </script>
Ms-Dos/Windows
Unix
Write backup
jsp File Browser version 1.2 by
www.vonloesch.de