示例#1
0
        protected void Page_Load(object sender, EventArgs e)
        {
            string agentID = Request.QueryString["aid"];

            agentScores = EvaluationEngine.GetAgentDashboard(agentID);
            foreach (AgentKPIScore kpiscore in agentScores)
            {
                string tempkpival = String.Format("{ x: Date.UTC({0}, {1}, {2}), y: {3}, name: '{4}' },", date);
                kpiScores.Add(tempkpival);
            }
        }