private void LoadRecord_ProductList(int intSubcategoryID, string strCountry, string strAdvertisementType)
    {
        try
        {
            using (BOC_Classifieds_Orders bocProductProfile = new BOC_Classifieds_Orders())
            {
                EOC_PropertyBean eocPropertyBean = new EOC_PropertyBean();

                eocPropertyBean.Subcategory_SubcategoryID = intSubcategoryID;
                eocPropertyBean.Country_CountryName       = strCountry;

                dtProductList = new DataTable();
                dtProductList = bocProductProfile.LoadRecord_ProductList_Classifieds(eocPropertyBean);
                FilterType    = Filter.BySubcategory;

                if (dtProductList.Rows.Count > 0)
                {
                    this.InitializeGridView(dtProductList);
                }
                else
                {
                    this.EmptyGridView();
                }
            }
        }
        catch (Exception Exp)
        {
            lblSystemMessage.Text = Exp.Message.ToString();
        }
    }