protected void Page_Load(object sender, EventArgs e)
 {
     if (String.IsNullOrWhiteSpace(this.Page.User.Identity.Name))
     {
         return;
     }
     if ((Request.QueryString["action"] == "delete") && (Request.QueryString["questionID"] != null))
     {
         int id = DFISYS.CoreBO.Common.function.Obj2Int(Request.QueryString["questionID"]);
         BO.CoreBO.Question obj = new BO.CoreBO.Question();
         obj.Question_ID = id;
         obj             = obj.SelectOne();
         obj.Status      = QuestionStatus.XOA;
         obj.Update();
     }
 }
Beispiel #2
0
 protected void Page_Load(object sender, EventArgs e)
 {
     if (String.IsNullOrWhiteSpace(this.Page.User.Identity.Name))
     {
         return;
     }
     if (Request.QueryString["action"] == "updateDiephoi")
     {
         int id = DFISYS.CoreBO.Common.function.Obj2Int(Request.QueryString["id"]);
         int ur = DFISYS.CoreBO.Common.function.Obj2Int(Request.QueryString["userResponse"]);
         BO.CoreBO.Question obj = new BO.CoreBO.Question();
         obj.Question_ID = id;
         obj             = obj.SelectOne();
         obj.Channel_ID  = ur;
         obj.Update();
     }
 }