コード例 #1
0
 protected void HabilitarBotaoPesquisar(long numped)
 {
     ServiceReference2.WebService1SoapClient nn = new ServiceReference2.WebService1SoapClient();
     this.GridView1.DataSource = nn.ListaItensParaConferencia(numped);
     this.GridView1.DataBind();
     this.GridView2.DataSource = nn.ListaItensFinalizados(numped);
     this.GridView2.DataBind();
     this.GridView3.DataSource = nn.ListaDetalhesDoPedido(numped);
     this.GridView3.DataBind();
     HabilitarDigitação();
 }