Nessun risultato. Prova con un altro termine.
Guide
Notizie
Software
Tutorial

Verifica della data

Grazie al seguente script è possibile verificare se il dato in nostro possesso è una data oppure no.

<%
function test(dtDay)
if isDate(dtDay) then
strAvviso=""
else
strAvviso=" NON "
end if
test="<i>" & dtDay & "</i>" & strAvviso & " è una data corretta. <br> "
end function

response.write test("21/01/02")
response.write test("frase")
%>

Grazie al seguente script è possibile verificare se il dato in nostro possesso è una data oppure no.

<%
function test(dtDay)
if isDate(dtDay) then
strAvviso=""
else
strAvviso=" NON "
end if
test="<i>" & dtDay & "</i>" & strAvviso & " è una data corretta. <br> "
end function

response.write test("21/01/02")
response.write test("frase")
%>

Link copiato negli appunti

Grazie al seguente script è possibile verificare se il dato in nostro possesso è una data oppure no.

<%

function test(dtDay)

if isDate(dtDay) then

strAvviso=""

else

strAvviso=" NON "

end if

test="<i>" & dtDay & "</i>" & strAvviso & " è una data corretta. <br> "

end function

response.write test("21/01/02")

response.write test("frase")

%>