public void subj()
        {
            HandledSubject getSubjHandle = new HandledSubject((string)Session["id"], 0);

            Context.Response.Write(getSubjHandle.getSubjectHandle());
        }
Esempio n. 2
0
        public void LoadSubject(int categoryID)
        {
            HandledSubject subject = new HandledSubject(categoryID);

            Context.Response.Write(js.Serialize(subject.loadSubject()));
        }