Ejemplo n.º 1
0
 protected void Page_Load(object sender, EventArgs e)
 {
     if (!IsPostBack)
     {
         string act = Request.QueryString["act"];
         if (act == "edit")
         {
             string code = Request.QueryString["code"];
             BLibraryPro.CardType CrdTypBLL = new BLibraryPro.CardType(code);
             txtTypeName.Text = CrdTypBLL.TypeDesc;
             txtBookAllowed.Text = CrdTypBLL.BooksAllowed.ToString();
         }
         else if (act == "del")
         {
             string code = Request.QueryString["code"];
             BLibraryPro.CardType CrdTypBLL = new BLibraryPro.CardType(code);
             CrdTypBLL.CardTypeCode = code;
             CrdTypBLL.DeleteCardType();
             Response.Redirect("~/GUI/Setup/CardType.aspx?act=list&show=1");
         }
         else if (act == "list")
         {
             if (Request.QueryString["show"] == "1")
             {
                 btnFilter_Click(sender, new EventArgs());
             }
             btnFilter_Click(sender, new EventArgs());
         }
     }
 }
Ejemplo n.º 2
0
        protected void btnSave_Click(object sender, EventArgs e)
        {
            string act = Request.QueryString["act"];

            BLibraryPro.CardType BCardType = new BLibraryPro.CardType();
            BCardType.TypeDesc = txtTypeName.Text;

            BCardType.BooksAllowed = Convert.ToInt32(txtBookAllowed.Text);
            if (act == "add")
            {
                msgBox.Message = BCardType.SaveCardType();
            }
            else if (act == "edit")
            {
                BCardType.CardTypeCode = Request.QueryString["code"];
                msgBox.Message = BCardType.UpdateCardType();

            }
            else if (act == "del")
            {
                BCardType.CardTypeCode = Request.QueryString["code"];
                msgBox.Message = BCardType.DeleteCardType();
            }
            Response.Redirect("~/GUI/Setup/CardType.aspx?act=list");
        }