Wrox Home  
Search P2P Archive for: Go

  Return to Index  

asp_web_howto thread: how print a textarea contents?


Message #1 by acaterino@i... on Tue, 29 May 2001 15:31:49
how print a textarea contents?
Message #2 by "Enigma" <enigma@b...> on Tue, 29 May 2001 19:01:27
Here you Go:



<%

words = (Request.QueryString("T1"))

%>



<html>



<head>

<meta http-equiv="Content-Type" content="text/html; charset=windows-1252">

<title>Last input</title>

</head>



<body>



<form method="GET">

  <p><input type="text" name="T1" size="20"><input type="submit" 

value="Submit" ></p>

</form>

Last input: <%=words%>

</body>



</html>




  Return to Index