%@ Control Language="C#" Inherits="AVA.ResourcesPlatform.WebUI.Control.VideoPlay.VideoPlayTimeInfo" %>
<%
if (this.ListVideoTimeInfo != null && this.ListVideoTimeInfo.Count > 0)
{
%>
<%
foreach (var videoTimeInfo in this.ListVideoTimeInfo)
{
%>
-
<%= new HtmlAnchor(videoTimeInfo.Description) { Href = "#" + videoTimeInfo.Seconds, OnClick = "GoToTimeSpot(" + videoTimeInfo.Seconds + ")", Class = "show_title" }%>
<%= AVA.ResourcesPlatform.Config.Helper.FormatSecond(videoTimeInfo.Seconds / 1000) %>
<%
}
%>
<%
}
%>