Se ho un DataAdapter:
codice:
dadInterventi= new OleDBDataAdapter ("Select tblCommesse.Num_Comm, tblCommesse.Nome_Comm, tblSottoCommesse.Id_Sotto, tblSottoCommesse.Nome_Sotto, tblInterventi.Cod_Inter, tblInterventi.Nome_Inter, tblInterventi.Data_Inter, tblInterventi.Ore_Inter From tblCommesse, tblSottoCommesse, tblInterventi WHERE tblCommesse.Num_Comm=tblInterventi.Num_Comm And tblSottoCommesse.Id_Sotto=tblInterventi.Id_Sotto And tblInterventi.Codice='" & txtPersona.text & "' Order By Data_Inter DESC ", conn)
Come faccio ad assegnare alla variabile di sessione Session("Intervento") il valore di tblInterventi.Cod_Inter?
Grazie

Beke