码迷,mamicode.com
首页 > 编程语言 > 详细

javaweb jsp

时间:2017-09-25 22:57:45      阅读:161      评论:0      收藏:0      [点我收藏+]

标签:rect   .com   correct   input   receive   send   password   登录   post   

<html>

  <body>

  <form action="ch03_11_userReceive.jsp" method="post">

  姓名:<input type="text" name="RdName"><br>

  密码:<input type="password" name="RdPasswd"><br><br>

  <input type="submit" value="确定">

</form>

</body>

</html>

<html>

  <body>

  <%String Name=request.getParameter("RdName");

  String Passwd=request.getParameter("RdPasswd");

  if(Name.equals("abcdef")&&Passwd.equals("123456"))%>

  <jsp:forward page="ch03_11_loginCorrect.jsp"/>

  <%else%>

  response.sendRedirect(http://sohu.com);

</body>

</html>

<html>

<body>

  <%String Name=request.getParameter("RdName");%>

  欢迎, <%=Name>成功登录!

</body>

</html>

 

javaweb jsp

标签:rect   .com   correct   input   receive   send   password   登录   post   

原文地址:http://www.cnblogs.com/jgrs/p/7594145.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!