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

📄 login.jsp

📁 jsp做的一个在线投票系统 管理员可以对投票内容进行设置
💻 JSP
字号:
<%@ page contentType="text/html;charset=gb2312"%>
<html>
<head><title>管理员登录</title></head><meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<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>
<%	
        request.setCharacterEncoding("gb2312");

	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 + -