%@ Control Language="C#" AutoEventWireup="true" CodeBehind="MyVideoBar.ascx.cs" Inherits="AVA.ResourcesPlatform.WebUI.Control.My.MyVideoBar" %>
<%= new HtmlAnchor("视频") { Href = WebUrl.MyVideo(),Class="ctrl ctrl-video" }%>
<%= new HtmlAnchor("专辑") { Href= WebUrl.MyAlbum(),Class="ctrl ctrl-album" }%>
<%
if (SettingGroup.HasMeeting == true)
{
if (this.UserCode == null || CreateInstance.UserDao.Get(this.UserCode).ParentUserType.Name == "学生")
{
}else{
%>
<%= new HtmlAnchor("教研") { Href= WebUrl.MyMeeting(),Class="ctrl ctrl-meeting" }%>
<%
}
}
%>
<%
if (SettingGroup.HasSubject == true)
{
if (this.UserCode == null || CreateInstance.UserDao.Get(this.UserCode).ParentUserType.Name == "学生")
{
}else{
%>
<%= new HtmlAnchor("评课") { Href= WebUrl.MySubject() ,Class="ctrl ctrl-subject" }%>
<% }
}%>
<%
if (SettingGroup.HasLive == true)
{
if (this.UserCode == null || CreateInstance.UserDao.Get(this.UserCode).ParentUserType.Name == "学生")
{
}else{
%>
<%= new HtmlAnchor("直播") { Href= WebUrl.MyApplication() ,Class="ctrl ctrl-live" }%>
<%
}
}
%>