jsp 登陆界面的代码
发布网友
发布时间:2022-06-28 19:01
我来回答
共4个回答
热心网友
时间:2023-10-10 05:07
登录判断的页面代码
<%@ page contentType="text/html; charset=gb2312"%>
<%@ page import="java.sql.*"%>
<%@ page import="java.util.*"%>
<%@ include file="conn.jsp"%>
<%request.setCharacterEncoding("gb2312");
Statement stat=conn.createStatement(ResultSet.TYPE_SCROLL_SENSITIVE,ResultSet.CONCUR_UPDATABLE);
String name=request.getParameter("name");
String password=request.getParameter("password");
ResultSet rs=stat.executeQuery("select * from sjb where name='"+name+"'and pass='"+password+"'");
%>
<%if(rs.next()){%>
<%String shenfen=rs.getString(6);
session.setAttribute("name",name);
response.sendRedirect("index1.jsp");
}else{
out.print("帐号密码输入错误");%>
<a href="index1.jsp">点击返回</a>
<%}%>
登录输入时的代码
<form action="login.jsp" method="post" name="form1" class="STYLE1" id="form1">
帐号
<label>
<input name="name" type="text" id="name" tabindex="1" size="13" maxlength="13" />
</label>
<A href="regedit.jsp">注册</A>
密码
<label>
<input name="password" type="password" id="password" size="13" maxlength="13" />
</label>
<a href="forget.jsp">忘记</a>
<label>
<input type="submit" name="Submit" value="确定" />
</label>
<label>
<input type="reset" name="Submit2" value="重填" />
</label>
</form>
热心网友
时间:2023-10-10 05:07
好像不能贴代码
热心网友
时间:2023-10-10 05:08
<table width="100%" border="0" cellpadding="0" cellspacing="0" >
<form name=myForm method=post action="<%=appPath%>/memberLoginDispather.do?method=doMemberLogin">
<tr>
<td>用户名</td>
<td><input name="username" type="text" class="input" size="23" maxlength="20" value="" onkeyup="value=value.replace(/[\W]/g,'')" onbeforepaste="clipboardData.setData('text',clipboardData.getData('text').replace(/[^\d]/g,''))"/></td>
</tr>
<tr>
<td>密 码</td>
<td ><input name="password" type="password" class="input" size="23" maxlength="20" value=""/></td>
</tr>
<tr>
<td colspan="2" align="center">
<input type="Submit" value="登陆"class=inputtxt>
<input type="reset" value="重置" class=inputtxt> </td>
</tr>
<form>
</table>
热心网友
时间:2023-10-10 05:08
实验目标
写一个JSP界面,用来模拟模拟用户登陆邮件系统的过程。
实现4项功能:
1. 登陆;(action = login)
2. 查看信箱;(action = check)
3. 注销登陆。(action = logout)
4. 直接访问系统时,提示登陆信息。
实现方法
,用一个request参数action来标识要进行的操作。
1. 登陆;(action = login)
2. 查看信箱;(action = check)
3. 注销登陆。(action = logout)
4. 未指定 action 时,提示登陆信息。(action =)