hejsa
måske du kan bruge denne function til noget
Dim MonthNames
MonthNames =
Array("januar","februar","marts","april","maj","juni","juli","august","septem
ber","oktober","november","december")
function FormatDate(entrydatestr,formatstr)
tmp=formatstr
if instr(tmp,"dd")<>0 then tmp=replace(tmp,"dd",day(entrydatestr)) end if
if instr(tmp,"mm")<>0 then tmp=replace(tmp,"mm",month(entrydatestr)) end if
if instr(tmp,"mn")<>0 then
tmp=replace(tmp,"mn",monthName(month(entrydatestr)-1)) end if
if instr(tmp,"yyyy")<>0 then tmp=replace(tmp,"yyyy",year(entrydatestr)) end
if
if instr(tmp,"HH")<>0 then
tmp=replace(tmp,"HH",left("0"&Hour(entrydatestr),2)) end if
if instr(tmp,"MM")<>0 then
tmp=replace(tmp,"MM",left("0"&Minute(entrydatestr),2)) end if
FormatDate=tmp
end function
datestr=now
response.write FormatDate(datestr, "dd-mm-yyyy")
resultat: "18-03-2004"
response.write FormatDate(datestr, "dd. mn yyyy klokken: HH:MM")
resultat: "18. marts 2004 klokken 15:20"
--
Vil du lære at kode HTML, XHTML, CSS, SSI eller ASP?
- Pædagogiske tutorials på dansk
- Kom godt i gang med koderne
KLIK HER! =>
http://www.html.dk/tutorials