protected void btnSearch_Click(object sender, EventArgs e)
        {
            MapSearchModel mapSearchModel = new MapSearchModel();

            if (!string.IsNullOrEmpty(txtboxCity.Text))
            {
                mapSearchModel.City = txtboxCity.Text;
            }
            if (!string.IsNullOrEmpty(txtboxCountry.Text))
            {
                mapSearchModel.Country = txtboxCountry.Text;
            }
            if (!string.IsNullOrEmpty(txtboxName.Text))
            {
                mapSearchModel.FestivalName = txtboxName.Text;
            }
            if (ddlRegion.SelectedValue != "-1")
            {
                mapSearchModel.Region = ddlRegion.SelectedValue;
            }
            if (ddlMonth.SelectedValue != "-1")
            {
                if (ddlMonth.SelectedValue.Equals("TM"))
                {
                    mapSearchModel.Month = DateTime.UtcNow.ToString("MMMM");
                }
                else if (ddlMonth.SelectedValue.Equals("NM"))
                {
                    mapSearchModel.Month = DateTime.UtcNow.AddMonths(1).ToString("MMMM");
                }
                else
                {
                    mapSearchModel.Month = ddlMonth.SelectedValue;
                }
            }
            List <FestivalMapModel> list = exploreFestivalHandler.SearchDataForMap(mapSearchModel);

            rptMarkers.DataSource = null;
            rptMarkers.DataSource = list;
            rptMarkers.DataBind();
        }