<!--1.htm-->
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
" http://www.w3.org/TR/html4/loose.dtd ">
<html>
<머리>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>无标题文档</title>
</head>
<본문>
<form name="form1" method="post" action="t.asp">
<p>
<textarea name="textarea" cols="50"rows="10"></textarea>
</p>
<p> <input type="submit" name="Submit" value="提交">
<input type="reset" name="Submit2" value="중계">
</p>
</form>
</body>
</html>
<!--t.asp-->
< %@LANGUAGE="VBSCRIPT " CODEPAGE="936"%>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" " http://www.w3.org/TR/html4/loose.dtd ">
<html>
<머리>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>无标题文档</title>
</head>
<본문>
<%
희미한 메시지
msg=request.Form("텍스트 영역")
msg=교체(msg,vbcrlf,"<br>")
msg=교체(msg," "," ")
응답.메시지 쓰기
%>
</body>
</html>