Hello,
I try to explain my problem in English.
I have an problem with my ASP code, I have been connected to a database where I have the fields “Name”, “Day”, “Month” and “Year”. No I will that the ASP-page the Name shows if the date that I inserted in the database bigger is then the current date. I show her my code, but the code doesn”t work. What is wrong?
<%
Dim strMydate, strDate, strDate2, strDate3, strDag, strMaand, strJaar
strMydate = Date()
strDate = strMydate.Day()
strDate2 = strMydate.Month()
strDate3 = strMydate.Year()
strDag = rstRepetities("Dag")
strMaand = rstRepetities("Maand")
strJaar = rstRepetities("Jaar")
Do while not rstRepetities.EOF
If strDag => strDate AND strMaand => strDate2 AND strJaar => strDate3 THEN
response.write rstRepetities("Naam")
End if
rstRepetities.movenext
Loop
cnndb.close %>