You are welcome. I seem to remember some cDate functions in the example I gave you(
http://p2p.wrox.com/topic.asp?TOPIC_ID=28101), did you drop them for a reason?
cDate, Trim etc functions are available to us for very good reasons. When comparing strings if they pysically look the same, use these functions to force the data type and format you know you are looking for.
------------------------------
While addTime < dateadd("H","0",strSatclosed)
addTime = DateAdd("n",strSatapptframe,addTime)
Response.Write addTime & "<br>"
If trim(cDate(addTime)) <> trim(cDate(strAvailTime)) Then
Response.Write addTime & " [is not equal to]<br>"
else
Response.Write addTime & " [is equal to]<br>"
end if
Wend
-------------------------------------
;;;I need to know how I can capture these loop results and use them on other pages in my application.
I would post the in hidden form fields
;;;All this does is print each time twice
Well that is what you have asked the loop to do. The loop should print each time twice except for "08:30:00". Change your loop to look like my example above and it will do this.
Wind is your friend
Matt