谁可以帮我译代码:是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>
我感觉好像还缺代码似的,运行时不知道先运行哪个,好像还缺登录界面的吧?
展开
 我来答
TS小J
2010-11-08 · TA获得超过709个赞
知道小有建树答主
回答量:265
采纳率:0%
帮助的人:226万
展开全部
String resText=request.getParameter("resText");
你确定这句取到正确的内容了吗
肯定缺少代码
String userName=(String)session.getAttribute("name");
这一句取得session
之前都没有setAttribute("name");
所以不完整 你再找找
yyy521fyy
2010-11-08 · TA获得超过3484个赞
知道大有可为答主
回答量:5392
采纳率:25%
帮助的人:3548万
展开全部
什么错误?
把错误信息贴上来。
本回答被网友采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式