Ver Mensaje Individual
  #16 (permalink)  
Antiguo 23/04/2010, 07:11
Avatar de Adler
Adler
Colaborador
 
Fecha de Ingreso: diciembre-2006
Mensajes: 4.671
Antigüedad: 17 años, 10 meses
Puntos: 126
Respuesta: Problema con ASP y Ajax

Hola

Podría algo como esto

Código ASP:
Ver original
  1. Dim Arr()
  2. cantCampos = 0
  3. For each campo in Request.Form
  4. if Request.Form(campo) <> "" then
  5. cantCampos = cantCampos +1
  6. Redim preserve Arr(cantCampos)
  7. Arr(cantCampos) = Request.Form(campo)
  8. end if
  9. Next
  10.  
  11. Dim Arr2()
  12. Dim Arr3()
  13.  
  14. j = 0
  15. for i = 1 to ubound(Arr) step 2
  16. Redim preserve Arr2(j)
  17. Arr2(j) = Arr(i)
  18. j = j +1
  19. next
  20.  
  21. x = 0
  22. for i = 2 to ubound(Arr) step 2
  23. Redim preserve Arr3(x)
  24. Arr3(x) = Arr(i)
  25. x = x +1
  26. next
  27.  
  28. for i = 0 to 1
  29. Response.Write Arr2(i) & ","
  30. Response.Write Arr3(i) & "<br />"
  31. next

Suerte
__________________
Los formularios se envían/validan con un botón Submit
<input type="submit" value="Enviar" style="background-color:#0B5795; font:bold 10px verdana; color:#FFF;" />