Hi,
I got this error while developing an asp.net page with Sql server as database,
On checking the sql query i found out that the date value was not being sent in the format expected by the database , so by changing the format within my query resolved the issue !
Initially it was calendar.ToShortDateString() and i changed it to
Calendar1.SelectedDate.ToString(“MM/dd/yyyy”)
Bye…