Thanks, but the date should automatically show as 04/04/2007 when I simply use the Date() function on its own.
Something is wrong somewhere. I don't want to use customized functions as there is a problem somewhere with IIS, ASP, got knows. If I put the site on another server things would go wrong date wise :-(
Lee.
Main Topics
Browse All Topics





by: ryancysPosted on 2007-04-04 at 07:24:42ID: 18850788
try use a customized function, like:
teadd("d", 3,Date()))
function formatDateTime_DDMMYYYY(v)
if isDate(v) = false then exit function
formatDateTime_DDMMYYYY = right("0" & Day(v), 2) & "/" & right("0" & month(v), 2) & "/" & right("00" & year(v), 4)
end function
response.write formatDateTime_DDMMYYYY(Da