protected void btnClearFilter_Click(object sender, EventArgs e)
    {
        DDLFleet.ClearSelection();
        DDLVessel.ClearSelection();

        DDLRank.ClearSelection();
        DDLNationality.ClearSelection();
        DDLManningOffice.ClearSelection();
        //DDLCommentedBy.ClearSelection();


        DDLStatus.SelectedValue = "1";

        DDLCrewStatus.SelectedValue = "0";

        txtSearch.Text = "";

        txtCommentFromDate.Text = "";
        txtCommentToDate.Text   = "";

        BindFleetDLL();
        BindVesselDDL();

        Load_RankList();
        Load_CountryList();
        Load_ManningAgentList();

        //BindUserList();

        BindGrid();
    }