protected void ButtonStoreAddress_Click(object sender, EventArgs e)
        {
            LabelErrorStoreName.Visible = false;
            string zipcode             = validateAndReturnZipCode();
            string storeName           = TextBoxStoreName.Text;
            string nearestStoreAddress = null;

            if (zipcode != null && !storeName.Equals(""))
            {
                LabelStoreAddress.Visible = true;
                LocationServicesClient client = new LocationServicesClient();
                nearestStoreAddress = client.findNearestStore(zipcode, storeName);
                if (nearestStoreAddress.Equals("") || nearestStoreAddress == null)
                {
                    LabelStoreAddress.Text = "Sorry..No store found in the neighborhood with the given name";
                }
                else
                {
                    LabelStoreAddress.Text = nearestStoreAddress;
                }
            }
            else
            {
                LabelErrorStoreName.Visible = true;
                LabelErrorStoreName.Text    = "Please enter a store name";
            }
        }