bonjour. je développe une application en asp.net et je voudrais récupérer la valeur d'une date saisie dans un textbox, question une base de données oracle et afficher les données correspondantes à cette date. pour cela je fais ceci: this.StartDate = StartDate.Substring(8, 2) + "-" + StartDate.Substring(5, 2) + "-" + StartDate.Substring(0, 4); this.EndDate = EndDate.Substring(8, 2) + "-" + EndDate.Substring(5, 2) + "-" + EndDate.Substring(0, 4); et ma requete sql est la suivante : SELECT DISTINCT INTEREST_REF.INSTRUMENT AS INSTRUMENT, CURRENCY, NAME_EN,INTEREST_DAY, INTEREST_VALUE FROM INTEREST_REF,INTEREST_RATES WHERE INTEREST_REF.INSTRUMENT = INTEREST_RATES.INSTRUMENT AND INTEREST_DAY BETWEEN '"+End.ToString("dd-MMM-yyyy")+"' AND '"+Start.ToString("dd-MMM-yyyy")+"' mais il m'affiche l'eereur suivante : System.Data.OracleClient.OracleException: ORA-01841: (full) year must be between -4713 and +9999, and not be 0 j'ai cherché une solution en vain. Je viens donc demander de l'aide afin de résoudre mon problème. merci