protected void Page_Load(object sender, EventArgs e)
        {
            lblmsg.Text = "";
            if (Page.IsPostBack == false)
            {
                List <Branch> _BranchList = new List <Branch>();
                _BranchBL   = new BranchBL();
                _BranchList = _BranchBL.BL_Branch_Select();


                drpbranch.DataSource     = _BranchList;
                drpbranch.DataTextField  = "BranchName";
                drpbranch.DataValueField = "BranchID";
                drpbranch.DataBind();
                drpbranch.Items.Insert(0, "SELECT");

                List <Publication> _PublicationList = new List <Publication>();
                _PublicationBLL  = new PublicationBL();
                _PublicationList = _PublicationBLL.BL_Publication_Select();



                drppublication.DataSource     = _PublicationList;
                drppublication.DataTextField  = "PublicationName";
                drppublication.DataValueField = "PID";
                drppublication.DataBind();
                drppublication.Items.Insert(0, "SELECT");
            }
        }
Example #2
0
 private void PopulateContact()
 {
     dtContact             = new DataTable();
     dtContact             = BranchBL.GetContact(m_lBranchId);
     grdContact.DataSource = dtContact;
     ContactView.Columns["BranchTransId"].Visible = false;
     ContactView.Columns["BranchId"].Visible      = false;
 }
        protected void GridView1_RowCancelingEdit(object sender, GridViewCancelEditEventArgs e)
        {
            GridView1.EditIndex = -1;
            List <Branch> _BranchList = new List <Branch>();

            _BranchBL   = new BranchBL();
            _BranchList = _BranchBL.BL_Branch_Select();

            GridView1.DataSource = _BranchList;
            GridView1.DataBind();
        }
        protected void Page_Load(object sender, EventArgs e)
        {
            lblmsg.Text = "";
            if (Page.IsPostBack == false)
            {
                List <Branch> _BranchList = new List <Branch>();

                _BranchBL   = new BranchBL();
                _BranchList = _BranchBL.BL_Branch_Select();

                GridView1.DataSource = _BranchList;
                GridView1.DataBind();
            }
        }
        protected void Page_Load(object sender, EventArgs e)
        {
            lblmsg.Text = "";
            if (Page.IsPostBack == false)
            {
                List <Branch> _BranchList = new List <Branch>();
                _BranchBL   = new BranchBL();
                _BranchList = _BranchBL.BL_Branch_Select();

                drpbranch.DataSource     = _BranchList;
                drpbranch.DataTextField  = "BranchName";
                drpbranch.DataValueField = "BranchID";
                drpbranch.DataBind();
                drpbranch.Items.Insert(0, "SELECT");
                MultiView1.ActiveViewIndex = -1;
            }
        }
        protected void GridView1_RowDeleting(object sender, GridViewDeleteEventArgs e)
        {
            int bid = Convert.ToInt32(GridView1.DataKeys[e.RowIndex].Value);

            int           result      = 0;
            List <Branch> _BranchList = new List <Branch>();

            _BranchBL = new BranchBL();


            result = _BranchBL.BL_Branch_Delete(bid);
            if (result != 0)
            {
                lblmsg.Text = "Branch Record Deleted !!";
                _BranchList = _BranchBL.BL_Branch_Select();

                GridView1.DataSource = _BranchList;
                GridView1.DataBind();
            }
        }
        protected void btnadd_Click(object sender, EventArgs e)
        {
            int           result      = 0;
            List <Branch> _BranchList = new List <Branch>();

            _BranchBL = new BranchBL();


            result = _BranchBL.BL_Branch_Insert(txtaddbranch.Text);
            if (result != 0)
            {
                lblmsg.Text = "Branch Added Successfully !!";

                _BranchList = _BranchBL.BL_Branch_Select();

                GridView1.DataSource = _BranchList;
                GridView1.DataBind();
                txtaddbranch.Text = "";
                txtaddbranch.Focus();
            }
        }
        protected void GridView1_RowUpdating(object sender, GridViewUpdateEventArgs e)
        {
            int     bid   = Convert.ToInt32(GridView1.DataKeys[e.RowIndex].Value);
            TextBox bname = GridView1.Rows[e.RowIndex].Cells[2].Controls[0] as TextBox;

            int           result      = 0;
            List <Branch> _BranchList = new List <Branch>();

            _BranchBL = new BranchBL();


            result = _BranchBL.BL_Branch_Update(bid, bname.Text);
            if (result != 0)
            {
                lblmsg.Text         = "Branch Record Updated !!";
                GridView1.EditIndex = -1;
                _BranchList         = _BranchBL.BL_Branch_Select();

                GridView1.DataSource = _BranchList;
                GridView1.DataBind();
            }
        }
        protected void btnissue_Click(object sender, EventArgs e)
        {
            _RentBL = new RentBL();
            _BookBL = new BookBL();
            try
            {
                if (TextBox1.Text == "")
                {
                    lblissue.Text = "Enter Days !!";
                }
                else
                {
                    if (Convert.ToInt32(lblaqnt.Text) == 0)
                    {
                        lblissue.Text = "Book Stock Empty !!";
                    }
                    else
                    {
                        List <Rent> _RentList = new List <Rent>();
                        _RentBL   = new RentBL();
                        _RentList = _RentBL.BL_Student_Select_BY_SID_BName_Status(Convert.ToInt32(drpstudent.SelectedValue), lblbname.Text, 0);


                        if (_RentList.Count != 0)
                        {
                            lblissue.Text = "Student can't get copies of same book !!";
                        }
                        else
                        {
                            _RentList = _RentBL.BL_Student_Select_BY_SID_Status(Convert.ToInt32(drpstudent.SelectedValue), 0);


                            if (_RentList.Count == 3)
                            {
                                lblissue.Text = "A student has maximum 3 books !!";
                            }
                            else
                            {
                                int result  = 0;
                                int result1 = 0;
                                result = _RentBL.BL_RENT_Insert(lblbname.Text, Convert.ToInt32(drpstudent.SelectedValue), Convert.ToInt32(TextBox1.Text));

                                result1       = _BookBL.BL_Book_ISSUE_TO_STUDENT(Convert.ToInt32(ViewState["BBID"].ToString()));
                                lblissue.Text = "Book Issued to " + drpstudent.SelectedItem.Text;


                                List <Book> _BOOKList = new List <Book>();

                                _BOOKList = _BookBL.BL_BOOK_Select_BY_BID(Convert.ToInt32(ViewState["BBID"]));
                                if (_BOOKList.Count > 0)
                                {
                                    ViewState["BBID"] = _BOOKList[0].BID.ToString();
                                    lblbname.Text     = _BOOKList[0].BookName.ToString();
                                    lblauthor.Text    = _BOOKList[0].Author.ToString();
                                    lblbran.Text      = _BOOKList[0].Branch.ToString();
                                    lblpub.Text       = _BOOKList[0].Publication.ToString();
                                    lblprice.Text     = _BOOKList[0].Price.ToString();
                                    lblqnt.Text       = _BOOKList[0].Quantites.ToString();
                                    lblaqnt.Text      = _BOOKList[0].AvailableQnt.ToString();
                                    lblrqnt.Text      = _BOOKList[0].RentQnt.ToString();
                                    lbldetail.Text    = _BOOKList[0].Detail.ToString();
                                    Image2.ImageUrl   = _BOOKList[0].Image.ToString();
                                }
                                TextBox1.Text = "";
                                drpstudent.Items.Clear();
                                drpstudent.Items.Insert(0, "SELECT");


                                List <Branch> _BranchList = new List <Branch>();
                                _BranchBL   = new BranchBL();
                                _BranchList = _BranchBL.BL_Branch_Select();


                                drpbranch.DataSource     = _BranchList;
                                drpbranch.DataTextField  = "BranchName";
                                drpbranch.DataValueField = "BranchID";
                                drpbranch.DataBind();
                                drpbranch.Items.Insert(0, "SELECT");
                            }
                        }
                    }
                }
            }
            catch
            {
                lblissue.Text = "Sorry !!! Error !!!";
            }
        }