Ver Mensaje Individual
  #8 (permalink)  
Antiguo 17/06/2004, 04:53
Avatar de LeCLUB
LeCLUB
 
Fecha de Ingreso: abril-2003
Ubicación: Barcelona (España)
Mensajes: 205
Antigüedad: 21 años, 6 meses
Puntos: 1
Crea dos archivos ASP con estos datos y lo pruebas en tu server, a ver si es esto lo que dices:

1.asp
Código PHP:
<html>
<
body>
<
table width="300" border="1" align="center">
  <
tr>
    <
td>
    <
form action="2.asp" method="post" name="form1" target="_blank">
      <
p>Nombre:<br><input name="nombre" type="text" id="nombre"></p>
      <
p>Comentarios:<br><textarea name="comentarios" cols="30" rows="5" id="comentarios"></textarea></p>
      <
p><input type="submit" name="Submit" value="Enviar"></p>
    </
form></td>
  </
tr>
</
table>
</
body>
</
html
2.asp
Código PHP:
<%@LANGUAGE="VBSCRIPT"%>
<%
nombre Request.Form("nombre")
comentarios Replace(Request.Form("comentarios"), vbcrlf"<br>")
%>
<
html>
<
body>
<
table width="300" border="1" align="center">
  <
tr>
    <
td>Nombre:</td>
  </
tr>
  <
tr>
    <
td><%= nombre %></td>
  </
tr>
  <
tr>
    <
td>Comentarios:</td>
  </
tr>
  <
tr>
    <
td><%= comentarios %></td>
  </
tr>
</
table>
</
body>
</
html