Ive got some information that i want to be sent to the database, first the information is taken from the database to the textboxes which works, i will then be able to edit the text, and send back to the database, ive got the Command all coded but when i type in the new data, and the button is clicked it jus refreshes back with the old data.. no data is saved to the database, if anyone can help heres the code..
Dim strSQL As String = "UPDATE bloginformation SET Title ='" & txtTitle.Text & "', Information ='" & txtInformation.Text & "' WHERE blogid=" & Label3.Text & ""
Dim Cmd As New OleDbCommand(strSQL, Connection)
Cmd.ExecuteReader()
Connection.Close()
My connection is working fine, and also used a breakpoint to see if they were holding any values and they was, its just not updating please help me thanks