dologin.jsp

来自「达内JAVA培训-WEB课程部分项目源代码」· JSP 代码 · 共 12 行

JSP
12
字号
<%@taglib uri="http://java.sun.com/jsp/jstl/sql" prefix="sql"%>
<%@taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%>
<%@include file="dataSource.jsp"%>
<sql:query dataSource="${db}" var="student">
	select * from student where user_name='${param.userName}' and password = '${param.password}'
</sql:query>
<c:if test="${!empty student.rows}" var="hasStudent">
	<h1>Welcome,${param.userName}!</h1>
</c:if>
<c:if test="${!hasStudent}">
	<h1>The user is not found.</h1>
</c:if>

⌨️ 快捷键说明

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