?? index.jsp
字號:
<%@ page language="java" import="java.util.*" pageEncoding="GB2312"%>
<html>
<head>
<title>清華紫光電子檔案管理系統(tǒng)</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<link href="css/index.css" rel="stylesheet" type="text/css">
</head>
<body background="${pageContext.request.contextPath}/image/indexBG.jpg">
<form method="get" action="${pageContext.request.contextPath}/login.do?">
<table>
<tr>
<td>
username:
<input type="text" id="name" name="name"/>
password:
<input type="password" id="passwd" name="passwd"/>
</td>
<td>
<input type="submit" value="ok" />
<input type="reset" value="reset" />
</td>
</tr>
</table>
<%
String result = (String)request.getAttribute("result");
if("null".equalsIgnoreCase(result) || null == result || "".equals(result)){
out.println("");
}else{
out.println(result);
}
%>
</form>
</body>
</html>
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -