/* This event is used to Export all suggestion in the form of CSV format*/
    protected void btnExport_Click(object sender, EventArgs e)
    {
        StoreFront ObjStoreFront = new StoreFront();
        DataSet    ds            = new DataSet();

        ds = ObjStoreFront.GetBreedExport();
        if (ds.Tables[0].Rows.Count > 0)
        {
            DataTable dt = new DataTable();
            dt = ds.Tables[0];
            Response.ContentType = "Application/x-msexcel";
            Response.AddHeader("content-disposition", "attachment;filename=Breed.csv");
            Response.Write(ToCSV(dt));
            Response.End();
        }
    }