예제 #1
0
        protected void deleteOne_Onclick(object sender, EventArgs e)
        {
            ImageButton lb = (ImageButton)sender;

            string key = lb.CommandArgument;

            Utilities.DataIO data = new Profiles.Edit.Utilities.DataIO();

            data.DeleteOnePublication(this._personId, Convert.ToInt64(Session["NodeID"]), key, this.PropertyListXML);
            this.Counter = 0;
            grdEditPublications.DataBind();
            upnlEditSection.Update();
        }