<%@ Control Language="C#" AutoEventWireup="true" CodeBehind="MyVideo.ascx.cs" Inherits="AVA.ResourcesPlatform.WebUI.Control.My.MyVideo" %>
我的视频:我的<%= this.User.VideoCount %>个视频
名称: <%= new HtmlText("Name", this.Name) { Width = 120 }%> 日期从 <%= new HtmlText("CreateTimeBegin", this.CreateTimeBegin.ToShortDate()) { Width = 80 }%> 至 <%= new HtmlText("CreateTimeEnd", this.CreateTimeEnd.ToShortDate()) { Width = 80 }%> <%= new HtmlHidden("Key","MyVideo") %> <%= new HtmlSubmit("查询") %> <%= new HtmlReset("清除") { Class="btn"}%> <%= new HtmlButton("上传视频", "window.location.href='" + WebUrl.MyVideoUpload() + "';")%> <%= new HtmlButton("删除", "VideoBatchDelete(this);")%>
<% for (int i = 0; i <= this.ListVideo.Count - 1; i++) { var video = this.ListVideo[i]; %> <% } %>
视频
<%= new HtmlCheckBox() { Value = SetKey(video.Guid, video.Version), Class = "trsel", Title = DefineEnum.选择_不选.Define() }%>
  • <%= new HtmlAnchor( new HtmlImg(SettingGroup.VideoCover(video), video.Name) { Width=100, Height=62 , OnErrorImg=SettingGroup.DefaultImg} ) { Href = WebUrl.VideoPlay(video.Guid), Title=video.Name, Target = "_blank" }%>

<%= new HtmlAnchor(video.Name) { Href = WebUrl.VideoPlay(video.Guid), Target = "_blank" }%>
<% var classStatus = ""; if (video.Status == (int)AVA.ResourcesPlatform.Model.Pub.VideoStatusEnum.有效) { classStatus = "pass"; } else { classStatus = ""; } %> <%= ((AVA.ResourcesPlatform.Model.Pub.VideoStatusEnum)video.Status).Define() %> <% var classExamine = ""; if (video.Examine == (int)AVA.ResourcesPlatform.Model.Pub.VideoExamineEnum.审核通过) { classExamine = "pass"; } else if (video.Examine == (int)AVA.ResourcesPlatform.Model.Pub.VideoExamineEnum.审核不通过) { } else { classExamine = ""; } %> <%= ((AVA.ResourcesPlatform.Model.Pub.VideoExamineEnum)video.Examine).Define() %> <% var videoConvertStatus = ""; if (video.VideoConvertStatus == (int)AVA.ResourcesPlatform.Model.Pub.VideoVideoConvertStatusEnum.已转换) { videoConvertStatus = "pass"; } else { videoConvertStatus = ""; } %> <%= ((AVA.ResourcesPlatform.Model.Pub.VideoVideoConvertStatusEnum)video.VideoConvertStatus).Define() %> <% if (video.LockVideo == (int)AVA.ResourcesPlatform.Model.Pub.VideoLockVideoEnum.锁定) { %> <%= new HtmlSpan("锁定") { Title = video.ParentLockUser.UserName + " " + video.LockDateTime + " " + video.LockDescription }.Style(new { Color = "Red" })%> <% } %>
播放:<%= video.VideoView %> 评论:<%= video.CommentCount %>

<%= video.CreateTime.ToShortDate() %> 大小:<%= AVA.ResourcesPlatform.Config.Helper.FormatSize(video.FileSize.ToDouble()) %>
时长:<%= AVA.ResourcesPlatform.Config.Helper.FormatSecond(video.Period) %>
权限:<%= ((AVA.ResourcesPlatform.Model.Pub.VideoShareEnum)video.Share).Define() %>
<%= video.ParentCategory.Name %>
<% if (video.ParentLesson != null) { %> <%= video.ParentLesson.Section %> 《 <%= video.ParentLesson.Name %> 》 <% } %>
<%= new HtmlAnchor("编辑") { Href = WebUrl.MyVideoEdit(video.Guid) }%> | 删除
<%= new HtmlAnchor("附件") { Href = WebUrl.MyVideoAttachmentList(video.Guid) }%> | <%= new HtmlAnchor("知识点") { Href = WebUrl.MyVideoTimeInfoList(video.Guid) }%>
<%= new HtmlAnchor("教学环节") { Href = WebUrl.MyVideoSWList(video.Guid) }%> | <%= new HtmlAnchor("点评") { Href = WebUrl.MyVideoTimeInfoOtherList(video.Guid) }%>
<%= new HtmlAnchor("ST") { Href = WebUrl.MyVideoSWPatternList(video.Guid) }%> <% if(SettingGroup.HasSubject) { %> | <%= new HtmlAnchor("到优课评比") { Href = WebUrl.MyVideoToSubject(video.Guid) }%> <% } %> <% if (video.ParentLesson != null) { %> <%= new HtmlAnchor("通修课") { Href = WebUrl.TextbookView(video.ParentLesson.ParentTextbook.Guid,video.ParentLesson.Guid),Target="_blank" }%> <% } %>
<%= new HtmlText("SortNumber", video.SortNumber) { OnKeyUp = "this.value=this.value.replace(/[^\\d]/g,'');", OnBlur = "this.value=this.value.replace(/[^\\d]/g,'');if(this.value==''){this.value=this.lang};VideoChangeSortNumberClient(this,'" + SetKey(video.Guid, video.Version) + "')", Lang = video.SortNumber.ToString(), Width = 50, Title = "修改当前视频的位置" }%>
全选 - 取消
<%= new PagerAjaxInstance(this) { RecordCount = this.Query.RecordCount, PageSize = this.Query.PageSize, PageIndex = this.Query.PageIndex, PageJsFn = WebUrl.MyVideo(int.MaxValue, this.Name, this.CreateTimeBegin.ToString(null), this.CreateTimeEnd.ToString(null)) }.ToHtml()%>