Ti conviene costruire una variabile dinamica
codice:
<%
errore = ""
if nome = "" or IsNull(nome) then
errore = "Hai dimenticato il nome
"
end if

if cognome = "" or IsNull(cognome) then
errore = errore &"Hai dimenticato il cognome
"
end if

if eta = "" or IsNull(eta) then
errore = errore &"Hai dimenticato l'età
"
end if
....
....
....
if errore <> "" then
'fai quello che vuoi
else
response.write errore
end if
%>
Roby