当前位置: 代码迷 >> Java Web开发 >> [求助]这个简易的聊天页面怎么不能用呢??
  详细解决方案

[求助]这个简易的聊天页面怎么不能用呢??

热度:149   发布时间:2005-10-27 13:35:00.0
[求助]这个简易的聊天页面怎么不能用呢??
<%@page contentType="text/html;charset=GBK"%> <html> <body> <% if(application.getAttribute("chat")!=null){ if(request.getParameter("mywords")!=null){ String mywords=request.getParameter("mywords"); mywords=(String)application.getAttribute("chat")+"<br>"+mywords; application.setAttribute("chat",mywords); out.print((String)application.getAttribute("chat")); } } %> <form action="421.jsp" method="get"> <input type="text" size="30" name="mywords" value="i like chat"> <input type="submit" name="submit" value="提交"> </form> </body> </html>
搜索更多相关主题的帖子: 页面  聊天  

----------------解决方案--------------------------------------------------------
421.jsp代码在哪里呀
----------------解决方案--------------------------------------------------------
  相关解决方案