void GetDreamHouseDetail(int DreamHouseId)
        {
            DataTable dt = clsobj.GetDreamHouseDetail(DreamHouseId);

            if (dt.Rows.Count > 0)
            {
                lblTitle.Text       = Convert.ToString(dt.Rows[0]["Title"]);
                lblAddress.Text     = Convert.ToString(dt.Rows[0]["Address"]);
                lblPrice.Text       = Convert.ToString(dt.Rows[0]["Price"]);
                lblDescription.Text = Convert.ToString(dt.Rows[0]["Description"]);
            }
        }