Ver Mensaje Individual
  #5 (permalink)  
Antiguo 12/08/2009, 09:40
Avatar de sweetlydark
sweetlydark
 
Fecha de Ingreso: septiembre-2008
Mensajes: 391
Antigüedad: 16 años, 2 meses
Puntos: 10
Respuesta: Envio maximo de datos mediante javascript

Realize uno examenes con un text de 6,901 caracteres sin los espacios y 8,785 con los espacios y javascript lo trato de lo mas bien:

Código:
<html>
<head>
<script language="JavaScript">
var stringLong = "mi texto largo"
function printme() {
document.getElementById("printer").value = stringLong;
}
</script>

</head>
<body>


<textarea id="printer" rows="40" cols="50"></textarea>
<button onclick="printme()">Muestra text</button>
</body>
</html>
**Claro aqui no voy a imprimir los 6,000+ caracteres.
Tambien intente un post con php y me funciono:

Código:
<html>
<body>

Texto largo <?php echo $_POST["txt"]; ?> 

<form action="tester.php" method="post">
Texto Largo: <textarea type="text" name="txt" ></textarea>
<input type="submit" />
</form>

</body>
</html>
Pero con código java no ya no se nada de java pero el problema debe ser tu código ya que dudo que sea que java no le guste tantos caracters.
__________________
Por fin vuelvo a tener internet!
http://www.anidandoetiquetas.com/