Código:
Tambien he probado de poner if Producto <> "" entonces hace el proceso else next y tambien me da error.
For index = 1 to Request.Form.Count
Producto = Request.Form("Producto" & index)
If Producto = "" Then
next
End If
Cantidad = Request.Form("Cantidad" & index)
ProductoTotal = Request.Form("ProductoTotal" & index)
Mensaje = Mensaje & "Producto" & index & ": " & Producto & Chr(13) & Chr(10)
Mensaje = Mensaje & "Cantidad" & index & ": " & Cantidad & Chr(13) & Chr(10)
Mensaje = Mensaje & "ProductoTotal" & index & ": " & ProductoTotal & Chr(13) & Chr(10) & Chr(13) & Chr(10)
next

