习题解答编写程序实现一个简单聊天室,要能显示讲话人姓名、讲话内容、讲话时间。
answer-4.asp简单聊天室例子<% Option Explicit %><html><head> <title>简单聊天室例子</title> <meta http-equiv="refresh" content="60"></head><body> <form action="" method="post" name="form1"> 讲话人:<input type="text" name="who" size="16" value='<%=request("who")%>' ><br> 请讲话:<input type="text" name="pronunciation" size="30"> <input type="submit" VALUE=" 确 定 "> </form>
附件列表