Fabio
Ok capito.
L'esportazione in formato AAAAMMGG non e' pero' possibile in questo modo, e' necessario formattare i campi con degli script
Per la data documento potete utilizzare qualcosa di questo tipo
Option Explicit
Dim dateValue Function ExpandP0(valore,lunghezza) While len(valore)<lunghezza valore="0" & valore Wend ExpandP0=valore End Function Function DateToYYYYMMDD(dateValue) If Year(dateValue)>1900 Then DateToYYYYMMDD=ExpandP0(Year(dateValue),4) & ExpandP0(Month(dateValue),2) & ExpandP0(Day(dateValue),2) Else DateToYYYYMMDD="" End If End Function Response.Write(DateToYYYYMMDD(Rdy.toDate(Doc.DocDate)))
|