I have a TextBox that captures the date of the machine using this code:
TextBox1.Text = DateTime.Now.ToString ("dd / MM / yyyy")
I have a field in my sql table named Date of type date
When I try to insert the data
insert into tbltest (date) values ('"& TextBox1.Text &"') ", with)
I get this error: