예제 #1
0
        protected void Page_Load(object sender, EventArgs e)
        {
            if (LiftDomain.User.IsLoggedIn)
            {
                Appt    a       = new Appt();
                DataSet apptSet = a.doQuery("get_stats");

                wallRenderer = new WallRenderer(apptSet);

                sentence1  = Organization.Current.title.ToString();
                sentence1 += " has ";

                LiftDomain.Wall w     = new LiftDomain.Wall();
                long            walls = w.doCommand("get_wall_count");

                sentence1 += walls.ToString();

                sentence1 += " prayer walls.";

                sentence1 = Language.Current.translate(sentence1);
            }
            else
            {
                Response.Redirect("Login.aspx?target=Wall.aspx");
            }
        }
예제 #2
0
        protected void Page_Load(object sender, EventArgs e)
        {
            PageAuthorized.check(Request, Response);

            LiftDomain.Wall w = new LiftDomain.Wall();
            w.id.Value = Convert.ToInt32(Request["id"]);
            w.doCommand("remove");

            Response.Redirect("WallList.aspx");
        }
예제 #3
0
        protected void Page_Load(object sender, EventArgs e)
        {
            PageAuthorized.check(Request, Response);

            LiftDomain.Wall w = new LiftDomain.Wall();

            w.user_id.Value = Convert.ToInt32(Request["user_id"]);
            w.id.Value      = Convert.ToInt32(Request["wall_id"]);

            w.doCommand("update");
        }
예제 #4
0
        protected void Page_Load(object sender, EventArgs e)
        {
            PageAuthorized.check(Request, Response);

            string idStr = Request["id"];

            valueStr = Request["value"];

            LiftDomain.Wall w = new LiftDomain.Wall();

            w.id.Value    = Convert.ToInt32(idStr);
            w.title.Value = valueStr;

            w.doCommand("update");
        }
예제 #5
0
        protected void Page_Load(object sender, EventArgs e)
        {
            PageAuthorized.check(Request, Response);

            addBtn.Text = "Add new Wall";

            if (IsPostBack)
            {
                LiftDomain.Wall newWall = new LiftDomain.Wall();
                newWall.title.Value   = wall_title.Text;
                newWall.user_id.Value = LiftDomain.Organization.Current.user_id.Value;
                newWall.doCommand("insert");
            }

            wall_title.Text = "";
            LiftDomain.Wall w       = new LiftDomain.Wall();
            DataSet         wallSet = w.doQuery("get_walls");

            wallListRenderer = new PartialRenderer(HttpContext.Current, wallSet, "_WallList.htm", new PartialRenderer.RenderHelper(render_helper));
        }