protected void Page_Load(object sender, EventArgs e)
        {
            ci = new Bol_City();
            DropDownList1.DataSource = ci.SelectAllCity();
            DropDownList1.DataTextField = "Name";
            DropDownList1.DataValueField = "Ci_id";
            DropDownList1.DataBind();

            bpp = new Bol_Packing_Place();
            GridView1.DataSource = bpp.SelectAllPacking_Place();
            GridView1.DataBind();

            DropDownList4.DataSource = ci.SelectAllCity();
            DropDownList4.DataTextField = "Name";
            DropDownList4.DataValueField = "Ci_id";
            DropDownList4.DataBind();
        }
 protected void Page_Load(object sender, EventArgs e)
 {
     pp = new Bol_Packing_Place();
     GridView2.DataSource = pp.SelectAllPacking_Place();
     GridView2.DataBind();
 }