protected void rptReprintSource_ItemCommand(object source, RepeaterCommandEventArgs e)
        {
            ReprintSourceBiz  pBiz = new ReprintSourceBiz();
            lwg_ReprintSource p    = pBiz.GetByID(int.Parse(e.CommandArgument.ToString()));

            if (e.CommandName.Equals("EDIT"))
            {
                if (p != null)
                {
                    btnAdd.Text   = "Update";
                    txtTitle.Text = "Update Reprint Source";
                    hdfID.Value   = e.CommandArgument.ToString();
                    pnEditReprintSource.Visible = true;
                    pnListReprintSource.Visible = false;
                    txtName.Text = p.Name;
                }
            }
            else if (e.CommandName.Equals("DELETE"))
            {
                if (p != null)
                {
                    if (pBiz.DeleteReprintSource(p))
                    {
                        BindingReprintSource();
                    }
                }
            }
        }