sammenlig datoer
Hey,skriver asp normalt og skal nu til at bygge om til .net
Men hvordan gør man dette ?
Dim d1 As DateTime = Date.Today
Dim d2 As DateTime = Date.Today.AddDays(2)
'Do Until Date.Compare(d1, d2) >= 0
Do Until d1 > d2
Response.Write("<br /> test" & d2.ToString)
d1.AddDays(1)
Loop