⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 login.jsp

📁 投票系统的源代码。投票系统分为普通用户访问界面和管理员访问界面两部分。普通用户访问界面由index.jsp页面进入
💻 JSP
字号:
<%@ page contentType="text/html;charset=gb2312"%>
<html>
<head><title>管理员登录</title></head>
<body>
<center>
<h2>管理员登录</h2>
<form method="post" action="process.jsp">
<table border bordercolor="#0099FF" bgcolor='#CCFFFF'>
<tr><td width="40%">用户名:</td>
    <td><input type="text" name="user"></td>
<tr><td width="40%">密码:</td>
    <td><input type="password" name="pw"></td>
<tr>
     <td colspan="2" align="center">
        <input type="submit" value="登录">&nbsp;&nbsp;&nbsp;&nbsp; 
        <input type="reset" value="清空">
     </td>
</table>
</form>
<%	
	String warning=request.getParameter("warning");
	if(warning!=null)
	{
		warning=new String(warning.getBytes("8859_1"));
		out.println("<h3>"+warning+",请重新登录或<a href='index.jsp'>返回首页</a></h3>");
	}
%>
</center>
</body>
</html>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -