-
<%= 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) }%>
<%
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) }%>
<%
}
%>
<%
}
%>
<%
if (this.Video.TeacherRatio != null
&& this.Video.StudentRatio != null)
{
%>
- 师生活动比例
- 老师活动比例:
<%= this.Video.TeacherRatio%>%
- 学生活动比例:
<%= this.Video.StudentRatio%>%
- 转换率:
<%= this.Video.TransferRatio%>%(30’取样)
<%
if (this.Video.TeachingType != null)
{
%>
- 课堂类型:
<%= ((AVA.ResourcesPlatform.Model.Pub.VideoTeachingTypeEnum)this.Video.TeachingType).Define() %>
<%
}
%>
<%
}
%>
<%= new VideoPlaySWPatternInstance(this) { Width=200, Height=200 }.ToHtml()%>