protected void btnSave_Click(object sender, EventArgs e)
        {
            string pid = Request.QueryString["pid"];

            if (!string.IsNullOrEmpty(pid))
            {
                Valuer v   = new Valuer();
                string wid = v.GetNewWhichId(pid, "distalfemoralfx");
                v.SavePageObjects(this.Page, pid, "distalfemoralfx", wid);
                Response.Redirect("distalfemoralfx.aspx?pid=" + pid + "&wid=" + wid);
            }
        }
        protected void btnEdit_Click(object sender, EventArgs e)
        {
            string pid = Request.QueryString["pid"];
            string wid = Request.QueryString["wid"];

            if (!string.IsNullOrEmpty(pid) && !string.IsNullOrEmpty(wid))
            {
                Valuer v = new Valuer();
                v.SavePageObjects(this.Page, pid, "kneeosteoarthritisPain", wid);
                Response.Redirect("kneeosteoarthritisPain.aspx?pid=" + pid + "&wid=" + wid);
            }
        }
Esempio n. 3
0
        protected void btnEdit_Click(object sender, EventArgs e)
        {
            string pid = Request.QueryString["pid"];
            string wid = Request.QueryString["wid"];

            if (!string.IsNullOrEmpty(pid) && !string.IsNullOrEmpty(wid))
            {
                Valuer v = new Valuer();
                v.SavePageObjects(this.Page, pid, "VarusValgusDeformity", wid);
                Response.Redirect("VarusValgusDeformity.aspx?pid=" + pid + "&wid=" + wid);
            }
        }