コード例 #1
0
ファイル: Requester.aspx.cs プロジェクト: kuibono/KCMS2
        protected void SaveAnswer(int QuestionID, string UserName, string Tel, string Content)
        {
            DataEntities ent = new DataEntities();
            Answer a = new Answer();
            a.Agree = 0;
            a.AnswerTime = DateTime.UtcNow.AddHours(8);
            a.Content = Content;
            //a.Email = "";
            a.QuestionID = QuestionID;
            //a.Tel = Tel;
            a.UserName = UserName;
            a.UserID = 0;

            ent.AddToAnswer(a);
            ent.SaveChanges();
            ent.Dispose();
            Js.AlertAndGoback("消息已经发送,感谢您的支持!");
        }
コード例 #2
0
ファイル: PostAnswer.aspx.cs プロジェクト: svn2github/KCMS2
        protected void Page_Load(object sender, EventArgs e)
        {
            DataEntities ent = new DataEntities();

            User u = UserAction.opuser;
            if (u.ID <= 0)
            {
                Js.AlertAndGoback("对不起,您没有登录,请登录后回答!");
                return;
            }

            int qid = WS.RequestInt("qid");
            string content = WS.RequestString("content");
            if (qid <= 0)
            {
                Js.AlertAndGoback("对不起,参数错误,如有疑问,请联系管理员!");
                return;
            }

            Question q = (from l in ent.Question where l.ID == qid select l).FirstOrDefault();
            Class cls = q.GetClass();
            if (UserAction.HasPostRight(cls.ID) == false)
            {
                Js.AlertAndGoback("对不起,对于本栏目您没有回答权限,如有疑问,请联系管理员!");
                return;
            }

            Answer a = new Answer();
            a.Agree = 0;
            a.AnswerTime = DateTime.Now;
            a.Content = content;
            a.QuestionID = qid;
            a.UserID = u.ID;
            a.UserName = u.UserName;

            ent.AddToAnswer(a);
            CreatePage.CreateContentPage(q, q.GetClass());//创建内容页

            ent.Dispose();
            string url = BasePage.GetQuestionUrl(q, q.GetClass());

            Js.AlertAndChangUrl("回答成功!", url);
        }