asp_web_howto thread: how print a textarea contents?
how print a textarea contents?
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>
|





