void UcTVGeography_NodeBinding(object sender, EntpClass.WebControlLib.TreeNodeBindingEventArgs e)
    {
        string geoId = Fn.ToString(e.Row["geo_id"]);
        string geoName = Fn.ToString(e.Row["text"]);

        e.Node.NodeData = geoId;
        e.Node.Text = geoName;                
    }
    void UcTVTeam_NodeBinding(object sender, EntpClass.WebControlLib.TreeNodeBindingEventArgs e)
    {
        string teamId = Fn.ToString(e.Row["team_id"]);
        string teamPid = Fn.ToString(e.Row["team_pid"]);
        //string teamGuid = Fn.ToString(e.Row["team_guid"]);
        string teamName = Fn.ToString(e.Row["text"]);
        string teamType = Fn.ToString(e.Row["type"]);
        string teamTypeId = Fn.ToString(e.Row["team_type_id"]);
        string imageUrl = Fn.ToString(e.Row["image_url"]);

        e.Node.NodeData = teamId;
        e.Node.Text = teamName;
        //e.Node.Type = teamType;
        e.Node.ImageUrl = UrlHelper.UrlBase + "/HR/OrgChart/" + imageUrl;
        //e.Node.ExtendedProperties.Add("team_guid", teamGuid);
        //e.Node.ExtendedProperties.Add("team_type_id", teamTypeId);

    }
 public override void SetPageInfo(ref EntpClass.Common.PageParameter p)
 {
   
 }
 public override void SetPageInfo(ref EntpClass.Common.PageParameter p)
 {
     p.FunctionID = 910040;
 }
     public override void SetPageInfo(ref EntpClass.Common.PageParameter p)
    {
        //p.FunctionID = Parameter.FunctionID;
        p.FunctionID = 3900160;

    }
 public override void SetPageInfo(ref EntpClass.Common.PageParameter p)
 {
     p.FunctionID = (this.PreviousPage as ReportScopePageBase).PageSetting.FunctionID;
 }