%@ Control Language="C#" Inherits="AVA.ResourcesPlatform.WebUI.Control.VideoPlay.VideoPlayInfo" %>
-
<%= new HtmlImg(CreateInstance.UserDao.HeadPortrait(this.Video.ParentUser)) { Height=64, Width=64 }%>
- 主讲教师:
<%= new HtmlAnchor(this.Video.Author) { Target = "_blank", Href = WebUrl.Show(this.Video.ParentUser.ParentUserType.ParentDomain.Code, this.Video.ParentUser.UserName), Title = this.Video.ParentUser.ParentUserType.ParentDomain.Name }%>
- 课程学校:
<%= new HtmlAnchor(this.Video.ParentUser.ParentUserType.ParentDomain.Name) { Target = "_blank", Href = new UrlExecute() { ParentDomain = this.Video.ParentUser.ParentUserType.ParentDomain.Guid }.ToUrl(SearchType.Video) }%>
- 学程:
<%= new HtmlAnchor(this.Video.ParentCategory.Name) { Target = "_blank", Href = new UrlExecute() { ParentCategory = this.Video.ParentCategory.Guid }.ToUrl(SearchType.Video) }%>
<%
if (this.ListChannel.Count > 0)
{
%>
- 课程:
<%
foreach (var channel in this.ListChannel)
{
%>
<%= new HtmlAnchor(channel.Name) { Target = "_blank", Href = new UrlExecute() { ParentChannel = channel.Guid }.ToUrl(SearchType.Video) }%>
<%
}
%>
<%
}
%>
<%
if (this.ListVideoTag.Count > 0)
{
%>
- 标签:
<%
foreach (var tag in this.ListVideoTag)
{
%>
<%= new HtmlAnchor(tag.Title) { Target = "_blank", Href = new UrlExecute() { TagTitle = tag.Title }.ToUrl(SearchType.Video) }%>
<%
}
%>
<%
}
%>
-
<%= new PVHistoryCollectInstance(this) { PKId= this.Video.Guid,PVTarget="Video" }.ToHtml() %>