ok
volendo inserire nel db un valore ID presente in una text box?
codice:int id= Convert.ToInt32(textbox.Text); string insert = "INSERT INTO [Tabella] " + "([ID]) " + "VALUES " + "('" + id + "')" ;
mi torna errore: Formato stringa di input non corretto