コード例 #1
0
ファイル: Cep.cs プロジェクト: dramosti/Web
        public Endereco BuscaEndereco(string Cep)
        {
            Endereco en = null;
            try
            {
                System.Net.ServicePointManager.Expect100Continue = false;

                WebCEP service = new WebCEP(Cep);
                en = new Endereco();
                en.Logradouro = service.Lagradouro;
                en.Bairro = service.Bairro;
                en.Cidade = service.Cidade;
                en.Uf = service.UF;
                return en;

            }
            catch (Exception ex)
            {
                return en;
            }
        }
コード例 #2
0
ファイル: CadastroCliente.aspx.cs プロジェクト: dramosti/Web
    protected void btnBuscaCep_Click(object sender, EventArgs e)
    {
        try
        {
            if (txtCdCepnor.Text != "")
            {
                HLP.WebServices.Cep      ws  = new HLP.WebServices.Cep();
                HLP.WebServices.Endereco end = ws.BuscaEndereco(txtCdCepnor.Text);

                if (end != null)
                {
                    txtDsEndnor.Text         = end.Logradouro;
                    txtNM_BAIRRONOR.Text     = end.Bairro;
                    cbxCdUfnor.SelectedValue = end.Uf.ToUpper();
                    CarregaCidades();
                    cbxCidades.SelectedValue = end.Cidade.ToUpper();
                    txtDsEndnor.Focus();
                }
            }
        }
        catch (Exception)
        {
        }
    }