谁可以帮我译代码:是JSP的简单聊天程序,:运行时出现错误,弄不明白什么意思。帮忙说说
<body>这是一个文件名叫login.jsp<formaction="sChat.jsp"method="post"><textareaname="chatText"r...
<body>
这是一个文件名叫login.jsp <form action="sChat.jsp" method="post">
<textarea name="chatText" rows=10 cols=50 ></textarea>
<input type="submit" value="发送"/><br>
</form>
<iframe name="chatTextFrame" width=400 border="3" height=300 scrolling=auto src="resText.jsp"></iframe>
<script type="text/javascript">
setTimeout('refresh()',1000);
function refresh()
{
setTimeout('parent.frames("chatTextFrame").location.reload();',500);
setTimeout('refresh()',1000);
}
</script>
</body>
第二个resText.jsp
<body>
<%
String chat=(String)application.getAttribute("chat");
if(chat!=null)
{
out.print(chat);
}
else
{
out.print("聊天记录");
}
%>
</body>
第三个sChat
<body>
<%
String userName=(String)session.getAttribute("name");
String resText=request.getParameter("resText");
resText=userName+":<br "+resText+"<br>";
String chat=(String)application.getAttribute("chat");
if(chat==null)
{
chat=resText;
}
else
{
chat+=resText;
}
application.setAttribute("chat",chat);
response.sendRedirect("login.jsp");
%>
</body>
我感觉好像还缺代码似的,运行时不知道先运行哪个,好像还缺登录界面的吧? 展开
这是一个文件名叫login.jsp <form action="sChat.jsp" method="post">
<textarea name="chatText" rows=10 cols=50 ></textarea>
<input type="submit" value="发送"/><br>
</form>
<iframe name="chatTextFrame" width=400 border="3" height=300 scrolling=auto src="resText.jsp"></iframe>
<script type="text/javascript">
setTimeout('refresh()',1000);
function refresh()
{
setTimeout('parent.frames("chatTextFrame").location.reload();',500);
setTimeout('refresh()',1000);
}
</script>
</body>
第二个resText.jsp
<body>
<%
String chat=(String)application.getAttribute("chat");
if(chat!=null)
{
out.print(chat);
}
else
{
out.print("聊天记录");
}
%>
</body>
第三个sChat
<body>
<%
String userName=(String)session.getAttribute("name");
String resText=request.getParameter("resText");
resText=userName+":<br "+resText+"<br>";
String chat=(String)application.getAttribute("chat");
if(chat==null)
{
chat=resText;
}
else
{
chat+=resText;
}
application.setAttribute("chat",chat);
response.sendRedirect("login.jsp");
%>
</body>
我感觉好像还缺代码似的,运行时不知道先运行哪个,好像还缺登录界面的吧? 展开
2个回答
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询