Ver Mensaje Individual
  #2 (permalink)  
Antiguo 26/07/2004, 10:20
Avatar de AlZuwaga
AlZuwaga
Colaborador
 
Fecha de Ingreso: febrero-2001
Ubicación: 34.517 S, 58.500 O
Mensajes: 14.550
Antigüedad: 24 años, 2 meses
Puntos: 535
Se me ocurre algo así:

Código:
<%
if rs("campo1") <> "" AND rs("campo2") <> "" AND rs("campo3") <> "" then
response.write "los campos 1, 2 y 3 ya fueron completados"
else
%>
<form...>
<% if rs("campo1") <> "" then %><input type="text" name="campo1"><% else %>El campo 1 ya fue completado<% end if %>
<% if rs("campo2") <> "" then %><input type="text" name="campo2"><% else %>El campo 2 ya fue completado<% end if %>
<% if rs("campo3") <> "" then %><input type="text" name="campo3"><% else %>El campo 3 ya fue completado<% end if %>
<input type="submit">
</form>
<% end if %>