随笔 - 64  文章 - 9  trackbacks - 0
<2024年7月>
30123456
78910111213
14151617181920
21222324252627
28293031123
45678910

常用链接

留言簿(6)

我参与的团队

随笔分类(88)

随笔档案(92)

文章分类(142)

文章档案(182)

天基成员

学习园

我的海角

搜索

  •  

积分与排名

  • 积分 - 179616
  • 排名 - 318

最新评论

frame.html

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Frameset//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-frameset.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>无标题文档</title>
</head>

<frameset rows="*" cols="*,145" framespacing="4" frameborder="yes" border="4" bordercolor="#3333FF">
  <frameset rows="*,100" cols="*" framespacing="4" frameborder="yes" border="4" bordercolor="#3333FF">
    <frame src="chatHall.jsp" name="mainFrame" id="mainFrame" title="mainFrame" />
    <frame src="login.jsp" name="bottomFrame" scrolling="No" noresize="noresize" id="bottomFrame" title="bottomFrame" />
  </frameset>
  <frame src="chatList.jsp" name="rightFrame" scrolling="No" noresize="noresize" id="rightFrame" title="rightFrame" />
</frameset>
<noframes><body>
</body>
</noframes></html>


login.jsp


<%@ page contentType="text/html;charset=GBK" %>

<html><style type="text/css">
<!--
body {
 background-image: url();
 background-color: #CCCC66;
 margin-top: 0px;
}
-->
</style><body>
<form action="judge.jsp" method=post>
<img src="Bear.bmp" width="82" height="77">   姓名:
<input type="text" name="name">
<input type="submit" name="submit" value="提交">
<br>
</form>
</body></html>


judge.jsp
<%@ page contentType="text/html;charset=GBK" %>
<html><body><center>
<%
 String str = request.getParameter("name");
 if(str.length() == 0)
  response.sendRedirect("login.jsp");
 else{
  response.sendRedirect("input.jsp");
  session.setAttribute("name",str);
 }
%>
</body></html>

posted on 2009-09-24 11:13 鹏凌 阅读(292) 评论(0)  编辑  收藏 所属分类: Java --j2ee

只有注册用户登录后才能发表评论。


网站导航: