Exemplo n.º 1
0
        public string GetStudetFile(string id, string time = "全部")
        {
            string path     = Server.MapPath("~/outExecl");
            string filePath = new ChooseOperation().GetStudetFile(id, path, true, time);

            return("{\"back\":\"" + filePath + "\"}");
        }
Exemplo n.º 2
0
        public string GetCreStudentFile(string id)
        {
            string path     = Server.MapPath("~/outExecl");
            string filePath = new ChooseOperation().GetStudetFile(id, path, false, null);

            return("{\"back\":\"" + filePath + "\"}");
        }
Exemplo n.º 3
0
        public string ChooseEx(string id, string exid, string dayOfWeek, string period)
        {
            long   sid  = (long)sc.GetStudentSession();
            string json = new ChooseOperation().ChooseEx(id, sid, exid, dayOfWeek, period);

            return("{\"back\":\"" + json + "\"}");
        }