codice:
<%
if instr(NumVal, ",") > 0 then
arr = split(NumVal, ",")
prima = arr(0)
dopo = arr(1)
else
prima = NumVal
dopo = 0
end if
%>
Roby