protected void btnSubmitLF_Click(object sender, EventArgs e)
    {
        branchEntity branchEntityObj = new branchEntity();

        branchEntityObj.brBranchCity_     = txtCityName.Text.Trim().ToUpper();
        branchEntityObj.brBranchPincode_  = Convert.ToDecimal(txtBrPin.Text.Trim());
        branchEntityObj.brBranchLocation_ = txtBrArea.Text.Trim().ToUpper();
        locationFinderBAL locationFinderBALObj = new locationFinderBAL();
        int locResUI1 = locationFinderBALObj.locationFinderBALF1(branchEntityObj);



        if (locResUI1 >= 1)
        {
            DataSet dsObj = locationFinderBALObj.locFinderBALF1(branchEntityObj);
            GridView1.DataSource = dsObj;
            GridView1.DataBind();
            GridView1.Visible = true;
        }
        else
        {
            Label1.Visible = true;
        }
    }