Ciao a tutti.

Ho un codice del tipo:
codice:
Function dataShort(dtData) 
dataShort = right("00"&day(dtData),2)&"/"&right("00"&month(dtData),2)&"/"& Year(dtData)
End Function 

...

do while not rs1.EOF

data1=rs1("data1")
data2=rs1("data2")

for i = data1 to data2 step 1
response.write dataShort(i) & "
"
next

rs1.MoveNext
loop
Che restituisce tutte le date comprese tra data1 e data2... è possibile inserire queste date (quelle comprese tra data1 e data2) in un database? Se si, come?

Grazie