Ho un problema con questo script e spero che qualcuno possa aiutarmi.
Il problema di questo script è che non seleziona il record dal db,sembra che il db converta la date nel formato mese/giorno/anno

TodaysDate = Day(Date) & "/" & Month(Date) & "/" & Year(Date)
TodaysDatePlus2 = DateAdd("m", 2, TodaysDate)

'Create Possible Vehicle Model Recordsets
Set rsVehiclesExpiring = Server.CreateObject("ADODB.Recordset")
strSQL = "SELECT * FROM tblVehicles Where TerminationDate Between #" & TodaysDate & "# And #" & TodaysDatePlus2 & "#"
'strSQL = "Select * from tblVehicles"
rsVehiclesExpiring.Open strS


le date vanno nel formato giorno/mese/anno