javaweb jsp
Posted 哈哈呵
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了javaweb jsp相关的知识,希望对你有一定的参考价值。
<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的主要内容,如果未能解决你的问题,请参考以下文章