Dim MyConnection As SqlConnection
MyConnection = New SqlConnection("....")
Dim DS As DataSet
Dim MyCommand As SqlDataAdapter
MyCommand = new SqlDataAdapter("select * from tabella1", MyConnection)
DS = new DataSet()
MyCommand.Fill(DS, "tabella1")
MyDataGrid.DataSource=DS.Tables("tabella1").Defaul tView
MyDataGrid.DataBind()
mettiamo ke nella tabella "tabella1" ci sia la parola "ciao" ed io volessi sostituirla con "buon giorno".. come faccio (scusate l'ignoranza)
![]()
grazie![]()